-
Notifications
You must be signed in to change notification settings - Fork 16
/
YZAppSDK.podspec
43 lines (33 loc) · 1.47 KB
/
YZAppSDK.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
#
# Be sure to run `pod spec lint YZOpenSDK.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "YZAppSDK"
s.version = "7.2.62"
s.summary = "An AppSDK for Youzanyun."
s.description = 'There are praise cloud AppSDK is for mobile applications to build the electricity trading system' \
'through an SDK will be able to integrate in the APP to provide the entire transaction services.'
s.homepage = "https://www.youzanyun.com/"
s.license = "MIT"
s.author = { "pansheng" => "[email protected]" }
s.source = { :http => "https://b.yzcdn.cn/youzanyun/appsdk/open_sdk_ios_basic_#{s.version.to_s}.zip" }
s.frameworks = 'WebKit', 'UIKit', 'Foundation'
s.requires_arc = true
s.ios.deployment_target = "11.0"
s.default_subspec = 'Base'
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.subspec 'Core' do |core|
core.ios.vendored_framework = 'Release/YZSDKCore.framework'
end
s.subspec 'Base' do |base|
base.ios.vendored_framework = 'Release/YZBaseSDK.framework'
base.dependency 'YZAppSDK/Core'
end
end