-
Notifications
You must be signed in to change notification settings - Fork 79
/
BraintreeDropIn.podspec
39 lines (34 loc) · 1.88 KB
/
BraintreeDropIn.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
Pod::Spec.new do |s|
s.name = "BraintreeDropIn"
s.version = "9.13.0"
s.summary = "Braintree Drop-in SDK: A modern foundation for accepting payments"
s.description = <<-DESC
Braintree is a full-stack payments platform for developers
This CocoaPod will help you accept payments in your iOS app.
Check out our development portal at https://developer.paypal.com/braintree/docs.
DESC
s.homepage = "https://developer.paypal.com/braintree/docs"
s.documentation_url = "https://developer.paypal.com/braintree/docs/start/hello-client/ios/v5"
s.screenshots = ["https://github.com/braintree/braintree-ios-drop-in/raw/main/Images/client-sdk-ios-series-light.png", "https://github.com/braintree/braintree-ios-drop-in/raw/main/Images/client-sdk-ios-series-dark.png"]
s.license = "MIT"
s.author = { "Braintree" => "[email protected]" }
s.source = { :git => "https://github.com/braintree/braintree-ios-drop-in.git", :tag => s.version.to_s }
s.platform = :ios, "12.0"
s.requires_arc = true
s.compiler_flags = "-Wall -Werror -Wextra"
s.swift_version = "5.9"
s.source_files = "Sources/BraintreeDropIn/**/*.{h,m}"
s.public_header_files = "Sources/BraintreeDropIn/Public/BraintreeDropIn/*.h"
s.frameworks = "UIKit"
s.dependency "Braintree/ApplePay", "~> 5.26"
s.dependency "Braintree/Card", "~> 5.26"
s.dependency "Braintree/Core", "~> 5.26"
s.dependency "Braintree/UnionPay", "~> 5.26"
s.dependency "Braintree/PayPal", "~> 5.26"
s.dependency "Braintree/ThreeDSecure", "~> 5.26"
s.dependency "Braintree/Venmo", "~> 5.26"
s.resource_bundles = {
"BraintreeDropIn-Localization" => ["Sources/BraintreeDropIn/Resources/*.lproj"],
"BraintreeDropIn_PrivacyInfo" => ["Sources/BraintreeDropIn/PrivacyInfo.xcprivacy"]
}
end