We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iam using Xcode12.0 My Podfile:
target 'ShopApp' do
use_frameworks!
pod "ShopApp_Shopify", "> 1.0" pod 'ShopApp_Gateway', '> 1.0.5'
target 'ShopAppTests' do inherit! :search_paths # Pods for testing end
target 'ShopAppUITests' do # Pods for testing end
end
installed successfully, but not able to find the below mentioned file "ShopApp/Data/DI/DataAssembly.swift."
Here's how to configure the Shopify provider. Add the following code:
container.register(API.self) { _ in return ShopifyAPI(apiKey: "API KEY", shopDomain: "SHOP DOMAIN", adminApiKey: "ADMIN API KEY", adminPassword: "ADMIN PASSWORD", applePayMerchantId: "APPLE PAY MERCHANT ID") } .inObjectScope(.container) to the file ShopApp/Data/DI/DataAssembly.swift.
any help?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Iam using Xcode12.0
My Podfile:
Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'ShopApp' do
Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
Pods for ShopApp
pod "ShopApp_Shopify", "
> 1.0"> 1.0.5'pod 'ShopApp_Gateway', '
target 'ShopAppTests' do
inherit! :search_paths
# Pods for testing
end
target 'ShopAppUITests' do
# Pods for testing
end
end
installed successfully, but not able to find the below mentioned file "ShopApp/Data/DI/DataAssembly.swift."
Here's how to configure the Shopify provider. Add the following code:
container.register(API.self) { _ in
return ShopifyAPI(apiKey: "API KEY",
shopDomain: "SHOP DOMAIN",
adminApiKey: "ADMIN API KEY",
adminPassword: "ADMIN PASSWORD",
applePayMerchantId: "APPLE PAY MERCHANT ID")
}
.inObjectScope(.container)
to the file ShopApp/Data/DI/DataAssembly.swift.
any help?
The text was updated successfully, but these errors were encountered: