-
Notifications
You must be signed in to change notification settings - Fork 16
/
TIoTLinkKit.podspec
39 lines (31 loc) · 1.53 KB
/
TIoTLinkKit.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
Pod::Spec.new do |s|
s.name = 'TIoTLinkKit'
s.version = ENV['LIB_VERSION'] || '1.0.0'
s.summary = '腾讯连连APP SDK是腾讯云物联网平台提供,应用开发厂商可通过SDK将设备接入腾讯云物联网平台,来进行设备管理'
s.description = <<-DESC
在腾讯云物联网开发平台中,APP通过接入APP SDK来实现与智能设备的配网,和通过物联网平台对智能设备进行管理。目前APP SDK中与设备配网方式提供了SmartConfig配网和Soft AP配网模式。
DESC
s.homepage = 'https://github.com/tencentyun/iot-link-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'iot-ios-sdk' => '[email protected]' }
s.source = { :git => 'https://github.com/tencentyun/iot-link-ios.git', :tag => "v#{s.version}" }
s.ios.deployment_target = '9.0'
s.static_framework = true
s.default_subspec = 'LinkCore'
s.subspec 'LinkCore' do |ss|
ss.source_files = 'Source/SDK/LinkCore/**/*.{h,m,c}'
ss.dependency 'MBProgressHUD', '1.1.0'
ss.dependency 'CocoaAsyncSocket', '7.6.5'
ss.dependency 'CocoaLumberjack', '3.7.2'
end
#实时音视频,引入则开启
s.subspec 'LinkRTC' do |ss|
ss.source_files = 'Source/SDK/LinkRTC/**/*.{h,m,c}'
ss.dependency 'TXLiteAVSDK_TRTC', '8.0.9644'
ss.dependency 'YYModel', '1.0.4'
ss.dependency 'TIoTLinkKit/LinkCore'
ss.pod_target_xcconfig = {
'VALID_ARCHS' => 'x86_64 armv7 arm64',
}
end
end