forked from paypal/paypal-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PayPal.podspec
47 lines (40 loc) · 1.55 KB
/
PayPal.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 = "PayPal"
s.version = "1.1.0"
s.summary = "The PayPal iOS SDK: Helps you accept card, PayPal, and alternative payment methods in your iOS app."
s.homepage = "https://developer.paypal.com/home"
s.license = "MIT"
s.author = { "PayPal" => "[email protected]" }
s.source = { :git => "https://github.com/paypal/paypal-ios.git", :tag => s.version.to_s }
s.swift_version = "5.8"
s.platform = :ios, "14.0"
s.compiler_flags = "-Wall -Werror -Wextra"
s.subspec "CardPayments" do |s|
s.source_files = "Sources/CardPayments/**/*.swift"
s.dependency "PayPal/CorePayments"
end
s.subspec "PayPalNativePayments" do |s|
s.source_files = "Sources/PayPalNativePayments/**/*.swift"
s.dependency "PayPal/CorePayments"
s.dependency "PayPalCheckout", "1.2.0"
end
s.subspec "PaymentButtons" do |s|
s.source_files = "Sources/PaymentButtons/*.swift"
s.dependency "PayPal/CorePayments"
s.resource_bundle = {
'PayPalSDK' => ['Sources/PaymentButtons/*.xcassets']
}
end
s.subspec "PayPalWebPayments" do |s|
s.source_files = "Sources/PayPalWebPayments/*.swift"
s.dependency "PayPal/CorePayments"
end
s.subspec "FraudProtection" do |s|
s.source_files = "Sources/FraudProtection/*.swift"
s.dependency "PayPal/CorePayments"
s.vendored_frameworks = "Frameworks/XCFrameworks/PPRiskMagnes.xcframework"
end
s.subspec "CorePayments" do |s|
s.source_files = "Sources/CorePayments/**/*.swift"
end
end