stripe-ios/Stripe.podspec

22 lines
1.3 KiB
Plaintext
Raw Normal View History

2012-11-17 03:15:02 +08:00
Pod::Spec.new do |s|
2015-01-08 07:36:34 +08:00
s.name = 'Stripe'
2020-09-15 04:11:53 +08:00
s.version = '20.0.0'
2015-01-08 07:36:34 +08:00
s.summary = 'Stripe is a web-based API for accepting payments online.'
2014-09-26 08:45:52 +08:00
s.license = { :type => 'MIT', :file => 'LICENSE' }
2015-01-08 07:36:34 +08:00
s.homepage = 'https://stripe.com/docs/mobile/ios'
2017-07-13 07:09:26 +08:00
s.authors = { 'Stripe' => 'support+github@stripe.com' }
s.source = { :git => 'https://github.com/stripe/stripe-ios.git', :tag => "#{s.version}" }
2017-12-12 04:10:12 +08:00
s.frameworks = 'Foundation', 'Security', 'WebKit', 'PassKit', 'Contacts', 'CoreLocation'
2014-09-26 08:45:52 +08:00
s.requires_arc = true
2016-04-30 09:45:45 +08:00
s.platform = :ios
2020-09-12 07:23:48 +08:00
s.ios.deployment_target = '11.0'
2020-09-12 07:29:53 +08:00
s.public_header_files = 'Stripe/PublicHeaders/Stripe/*.h'
s.source_files = 'Stripe/PublicHeaders/Stripe/*.h', 'Stripe/*.{h,m}'
s.vendored_libraries = 'InternalFrameworks/libStripe3DS2.a'
s.ios.resource_bundle = { 'Stripe' => 'Stripe/Resources/**/*.{lproj,json,png,xcassets}' }
2020-09-12 07:29:53 +08:00
s.ios.resources = "Stripe/ExternalResources/Stripe3DS2.bundle"
2019-09-10 05:54:41 +08:00
s.xcconfig = {
"OTHER_LDFLAGS" => "$(inherited) -ObjC"
}
2012-11-17 03:15:02 +08:00
end