forked from champo/px-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMercadoPagoSDK.podspec
37 lines (34 loc) · 1.32 KB
/
MercadoPagoSDK.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
Pod::Spec.new do |s|
s.name = "MercadoPagoSDK"
s.version = "4.32.4"
s.summary = "MercadoPagoSDK"
s.homepage = "https://www.mercadopago.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Mercado Pago"
s.source = { :git => "https://github.com/mercadopago/px-ios.git", :tag => s.version.to_s }
s.swift_version = '4.2'
s.platform = :ios, '10.0'
s.requires_arc = true
s.default_subspec = 'Default'
s.static_framework = true
s.subspec 'Default' do |default|
default.source_files = ['MercadoPagoSDK/MercadoPagoSDK/**/**/**.{h,m,swift}']
default.resources = ['MercadoPagoSDK/Resources/**/*.xib']
default.resource_bundles = {
'MercadoPagoSDKResources' => [
'MercadoPagoSDK/Resources/**/*.xcassets',
'MercadoPagoSDK/Resources/**/*.{lproj,strings,stringsdict}',
'MercadoPagoSDK/Resources/**/*.plist'
]
}
default.dependency 'MLUI', '~> 5.0'
default.dependency 'MLCardDrawer', '~> 1.4'
s.dependency 'MLBusinessComponents', '~> 1.0'
s.dependency 'MLCardForm', '~> 0.7'
s.dependency 'AndesUI/AndesBottomSheet', '~> 3.0'
end
#s.test_spec do |test_spec|
#test_spec.source_files = 'MercadoPagoSDK/MercadoPagoSDKTests/*'
#test_spec.frameworks = 'XCTest'
#end
end