forked from candyan/AlipaySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlipaySDK-2.0.podspec
36 lines (31 loc) · 1.3 KB
/
AlipaySDK-2.0.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
Pod::Spec.new do |s|
s.name = "AlipaySDKOrder-2.0"
s.version = "15.0.2"
s.summary = "Alipay SDK for iOS. You can create alipay order or sign orders with `Order` subspec."
s.homepage = "https://b.alipay.com/newIndex.htm"
s.license = {
:type => 'Copyright',
:text => <<-LINCENSE
支付宝(中国)网络技术有限公司 ^? 版权所有.
LINCENSE
}
s.author = { "AliPay" => "http://www.alipay.com/" }
s.platform = :ios, '6.0'
s.requires_arc = true
s.source = { :git => "https://github.com/zhu106878723/AlipaySDK", :tag => "#{s.version}" }
s.frameworks = 'CoreTelephony', 'SystemConfiguration', 'CoreMotion'
s.libraries = 'z', 'c++'
s.default_subspec = 'Core'
s.subspec "Core" do |core|
core.source_files = 'sources/extensions/ANAlipayResultCode.h'
core.resources = 'AlipaySDK.bundle'
core.vendored_frameworks = 'AlipaySDK.framework'
core.public_header_files = 'AlipaySDK.framework/Headers/**/*.h', 'sources/extensions/ANAlipayResultCode.h'
end
#s.subspec "Order" do |order|
order.source_files = 'sources/order/**/*.{h,m}'
order.dependency 'AlipaySDK-2.0/Core'
order.dependency 'OpenSSL'
order.dependency 'PupaFoundation'
#end
end