forked from stripe/stripe-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stripe.podspec
18 lines (18 loc) · 1.17 KB
/
Stripe.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Stripe'
s.version = '21.1.0'
s.summary = 'Stripe is a web-based API for accepting payments online.'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://stripe.com/docs/mobile/ios'
s.authors = { 'Stripe' => '[email protected]' }
s.source = { :git => 'https://github.com/stripe/stripe-ios.git', :tag => "#{s.version}" }
s.frameworks = 'Foundation', 'Security', 'WebKit', 'PassKit', 'Contacts', 'CoreLocation'
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'Stripe/*.swift'
s.vendored_frameworks = 'InternalFrameworks/static/Stripe3DS2.xcframework'
s.resource_bundles = { 'Stripe' => ['Stripe/Resources/Images/Stripe.xcassets', 'Stripe/Resources/**/*.{lproj,json,png}'] }
s.resources = ['InternalFrameworks/static/Stripe3DS2.bundle']
end