forked from stripe/stripe-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stripe.podspec
26 lines (24 loc) · 1.53 KB
/
Stripe.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'Stripe'
# Do not update s.version directly.
# Instead, update the VERSION file and run ./ci_scripts/update_version.sh
s.version = '23.27.0'
s.summary = 'Accept online payments using Stripe.'
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', 'UIKit'
s.requires_arc = true
s.platform = :ios
s.swift_version = '5.0'
s.ios.deployment_target = '13.0'
s.weak_framework = 'SwiftUI'
s.source_files = 'Stripe/StripeiOS/Source/*.swift'
s.ios.resource_bundle = { 'StripeBundle' => ['Stripe/StripeiOS/Resources/**/*.{lproj,png,xcassets}', 'Stripe/StripeiOS/PrivacyInfo.xcprivacy'] }
s.dependency 'StripeCore', s.version.to_s
s.dependency 'StripeUICore', s.version.to_s
s.dependency 'StripeApplePay', s.version.to_s
s.dependency 'StripePayments', s.version.to_s
s.dependency 'StripePaymentsUI', s.version.to_s
end