-
Notifications
You must be signed in to change notification settings - Fork 0
/
MangopayCheckoutSDK.podspec
41 lines (29 loc) · 1.4 KB
/
MangopayCheckoutSDK.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
Pod::Spec.new do |spec|
spec.name = "MangopayCheckoutSDK"
spec.version = "1.1.4"
spec.summary = "Checkout API Client, Payment Form UI and Utilities in Swift."
spec.description = <<-DESC
Checkout API Client and Payment Form Utilities in Swift.
This library contains methods to implement a payment form as well as UI elements.
DESC
spec.homepage = "https://www.mangopay.com"
spec.license = "MIT"
spec.author = { "Elikem Savie" => "elikem@menaget.com" }
spec.platform = :ios
spec.ios.deployment_target = "14.0"
spec.swift_version = '5.0'
spec.source = { :git => "https://gitlab.com/mangopay/dev/checkout-ios-sdk.git", :tag => "#{spec.version}", :branch => "main" }
spec.source_files = "MangopayCheckoutSDK/**/*.swift"
spec.dependency 'PayPal/PaymentButtons'
spec.dependency 'MangopayVaultSDK', '~> 1.0.8'
spec.dependency 'Sentry'
spec.exclude_files = [
'MangopayCheckoutSDK/Resources/SPMextension.swift',
'MangopayCheckoutSDK/Utils/Configs/Paypal/MGPPaypalOptions.swift',
'MangopayCheckoutSDK/MangopayPaymentSheet/PaymentFormView.swift'
]
spec.resource_bundles = {
'MangopayiOSSDK_MangopayCheckoutSDK' => ['MangopayCheckoutSDK/Resources/**/*.swift', 'MangopayCheckoutSDK/**/*.{png,jpeg,jpg,storyboard,xib,xcassets']
}
spec.vendored_frameworks = "Integrations/NethoneSDK.xcframework"
end