forked from paypal/paypal-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PayPal.podspec
43 lines (36 loc) · 1.4 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
Pod::Spec.new do |s|
s.name = "PayPal"
s.version = "0.0.1"
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/iOS-SDK.git", :tag => s.version.to_s }
s.swift_version = "5.5"
s.platform = :ios, "13.0"
s.compiler_flags = "-Wall -Werror -Wextra"
s.subspec "Card" do |s|
s.source_files = "Sources/Card/**/*.swift"
s.dependency "PayPal/PaymentsCore"
end
s.subspec "PayPalNativeCheckout" do |s|
s.source_files = "Sources/PayPalNativeCheckout/**/*.swift"
s.dependency "PayPal/PaymentsCore"
s.dependency "PayPalCheckout", "0.100.0"
end
s.subspec "PayPalUI" do |s|
s.source_files = "Sources/PayPalUI/*.swift"
s.dependency "PayPal/PaymentsCore"
end
s.subspec "PayPalWebCheckout" do |s|
s.source_files = "Sources/PayPalWebCheckout/*.swift"
s.dependency "PayPal/PaymentsCore"
end
s.subspec "PayPalDataCollector" do |s|
s.source_files = "Sources/PayPalDataCollector/*.swift"
s.vendored_frameworks = "Frameworks/XCFrameworks/PPRiskMagnes.xcframework"
end
s.subspec "PaymentsCore" do |s|
s.source_files = "Sources/PaymentsCore/**/*.swift"
end
end