-
Notifications
You must be signed in to change notification settings - Fork 1
/
PaysafePaymentsSDK.podspec
47 lines (38 loc) · 2.06 KB
/
PaysafePaymentsSDK.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.name = 'PaysafePaymentsSDK'
s.version = '0.0.30'
s.summary = 'Paysafe iOS SDK that implements the Payments APIs.'
s.homepage = 'https://github.com/paysafegroup/paysafe_sdk_ios_payments_api.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Paysafe Group' => '[email protected]' }
s.source = { :git => 'https://github.com/paysafegroup/paysafe_sdk_ios_payments_api.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.swift_version = '5.9'
s.resource_bundles = { "PaysafePaymentsSDK" => "Sources/Resources/PrivacyInfo.xcprivacy" }
s.subspec 'PaysafeCommon' do |common|
common.source_files = "Sources/PaysafeCommon/**/*.swift"
end
s.subspec "PaysafeApplePay" do |applepay|
applepay.source_files = "Sources/PaysafeApplePay/**/*.swift"
applepay.dependency "PaysafePaymentsSDK/PaysafeCommon"
applepay.resource_bundles = { "PaysafeApplePay_PrivacyInfo" => "Sources/PaysafeApplePay/PrivacyInfo.xcprivacy" }
end
s.subspec "PaysafeVenmo" do |venmo|
venmo.source_files = "Sources/PaysafeVenmo/**/*.swift"
venmo.dependency "PaysafePaymentsSDK/PaysafeCommon"
venmo.dependency 'Braintree/Venmo'
venmo.resource_bundles = { "PaysafeVenmo_PrivacyInfo" => "Sources/PaysafeVenmo/PrivacyInfo.xcprivacy" }
end
s.subspec "Paysafe3DS" do |tds|
tds.source_files = "Sources/Paysafe3DS/**/*.swift"
tds.dependency "PaysafePaymentsSDK/PaysafeCommon"
tds.vendored_frameworks = 'Frameworks/CardinalMobile.xcframework'
tds.resource_bundles = { "Paysafe3DS_PrivacyInfo" => "Sources/Paysafe3DS/PrivacyInfo.xcprivacy" }
end
s.subspec "PaysafeCardPayments" do |cardPayments|
cardPayments.source_files = "Sources/PaysafeCardPayments/**/*.swift"
cardPayments.dependency "PaysafePaymentsSDK/PaysafeCommon"
cardPayments.dependency "PaysafePaymentsSDK/Paysafe3DS"
cardPayments.resource_bundles = { "PaysafeCardPayments_PrivacyInfo" => "Sources/PaysafeCardPayments/PrivacyInfo.xcprivacy" }
end
end