-
Notifications
You must be signed in to change notification settings - Fork 1
/
TIoTLinkKit_TPNS.podspec
27 lines (22 loc) · 1.48 KB
/
TIoTLinkKit_TPNS.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
Pod::Spec.new do |s|
s.name = 'TIoTLinkKit_TPNS'
s.version = ENV['LIB_VERSION'] || '1.0.0'
s.summary = '该仓库为方便个人仓库构建使用,如有其他需求还请从官网下载原SDK'
s.description = <<-DESC
在CI构建中,有些SDK没有提供供方便pod集成使用,在此仓库提供个聚合SDK以便更好的支持CI。
DESC
s.homepage = 'https://github.com/tencentyun/iot-thirdparty-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = { :git => 'https://github.com/tencentyun/iot-thirdparty-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
# s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-all_load' }
# s.static_framework = true
s.source_files = 'Source/TPNS-iOS/Classes/**/*'
s.vendored_libraries = 'Source/TPNS-iOS/libXG-SDK-Cloud.a', 'Source/TPNS-iOS/libxgidfa.a', 'Source/TPNS-iOS/libXGExtension.a'
s.vendored_frameworks = 'Source/TPNS-iOS/XGMTACloud.framework'
s.frameworks = "CFNetwork", "SystemConfiguration", "CoreTelephony", "CoreGraphics", "Foundation", "UserNotifications", "CoreData"
s.libraries = "z", "sqlite3"
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end