Skip to content

Commit

Permalink
Merge pull request #358 from wmcbain/resolve_ios_cp
Browse files Browse the repository at this point in the history
Fix 'Symbol not found' issue with iOS 9 and Cocoapods.
  • Loading branch information
bgulanowski authored Sep 29, 2016
2 parents f39f808 + 0dea1b7 commit 5f2a69c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ xcuserdata
.ruby-version
*Sample*/Buy.framework
*-INTERNAL.*
.DS_Store

## Obj-C/Swift specific
*.hmap
Expand Down
32 changes: 16 additions & 16 deletions Mobile-Buy-SDK.podspec
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

0 comments on commit 5f2a69c

Please sign in to comment.