-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #358 from wmcbain/resolve_ios_cp
Fix 'Symbol not found' issue with iOS 9 and Cocoapods.
- Loading branch information
Showing
2 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Mobile-Buy-SDK' | ||
s.version = '2.0.1' | ||
s.summary = 'Sell with Shopify in iOS apps' | ||
s.description = 'Shopify’s Mobile Buy SDK makes it simple to sell physical products inside your mobile app. With a few lines of code, you can connect your app with the Shopify platform and let your users buy your products using Apple Pay or their credit card.' | ||
s.homepage = 'https://developers.shopify.com/mobile-buy-sdk' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = 'Shopify Inc.' | ||
s.platform = :ios, '8.0' | ||
s.resource_bundles = { 'Buy' => 'Mobile Buy SDK/Mobile Buy SDK/Models/Mobile Buy SDK.xcdatamodeld' } | ||
s.source = { :git => 'https://github.com/Shopify/mobile-buy-sdk-ios.git', :tag => s.version } | ||
s.source_files = 'Mobile Buy SDK/Mobile Buy SDK/**/*.{h,m,mm}' | ||
s.name = 'Mobile-Buy-SDK' | ||
s.version = '2.0.1' | ||
s.summary = 'Sell with Shopify in iOS apps' | ||
s.description = 'Shopify’s Mobile Buy SDK makes it simple to sell physical products inside your mobile app. With a few lines of code, you can connect your app with the Shopify platform and let your users buy your products using Apple Pay or their credit card.' | ||
s.homepage = 'https://developers.shopify.com/mobile-buy-sdk' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = 'Shopify Inc.' | ||
s.platform = :ios, '8.0' | ||
s.resource_bundles = { 'Buy' => 'Mobile Buy SDK/Mobile Buy SDK/Models/Mobile Buy SDK.xcdatamodeld' } | ||
s.source = { :git => 'https://github.com/Shopify/mobile-buy-sdk-ios.git', :tag => s.version } | ||
s.source_files = 'Mobile Buy SDK/Mobile Buy SDK/**/*.{h,m,mm}' | ||
s.public_header_files = 'Mobile Buy SDK/Mobile Buy SDK/Buy.h', 'Mobile Buy SDK/Mobile Buy SDK/**/*.h' | ||
s.header_dir = 'Buy' | ||
s.module_name = 'Buy' | ||
s.frameworks = 'PassKit' | ||
s.libraries = 'c++' | ||
s.requires_arc = true | ||
s.header_dir = 'Buy' | ||
s.module_name = 'Buy' | ||
s.weak_framework = 'PassKit' | ||
s.libraries = 'c++' | ||
s.requires_arc = true | ||
end |