-
Notifications
You must be signed in to change notification settings - Fork 16
/
Podfile
55 lines (48 loc) · 1.43 KB
/
Podfile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
platform :ios, '11.0'
#inhibit_all_warnings!
use_frameworks!
source 'https://cdn.cocoapods.org/'
#source 'https://github.com/CocoaPods/Specs.git'
def common_all_pods
pod 'Masonry', '1.1.0'
pod 'MBProgressHUD', '1.1.0'
pod 'SDWebImage', '4.4.2'
pod 'YYModel', '1.0.4'
pod 'QCloudCOSXML/Transfer', '5.5.2'
pod 'CocoaLumberjack', '3.7.2'
end
target 'LinkApp' do
common_all_pods
pod 'TIoTLinkKit', :path => './'
pod 'TIoTLinkKit/LinkRTC', :path => './'
pod 'TIoTLinkVideo', :path => './'
pod 'MJRefresh', '3.2.0'
pod 'IQKeyboardManager', '6.1.1'
pod 'FDFullscreenPopGesture', '1.1'
pod 'SocketRocket', '0.5.1'
pod 'TZImagePickerController', '3.2.1'
pod 'TrueTime','5.0.3'
pod 'KeychainAccess', '4.2.0'
pod 'Tencent-MapSDK', '4.3.9'
pod 'lottie-ios', '3.1.8'
pod 'CocoaAsyncSocket', '7.6.5'
pod 'TIoTLinkKit_TPNS', '1.0.1'
pod 'TIoTLinkKit_WechatOpenSDK', '1.0.1'
pod 'TIoTLinkKit_IJKPlayer', '2.0.15'
pod 'Bugly', '2.5.91'
end
target 'LinkSDKDemo' do
common_all_pods
pod 'TIoTLinkKit', :path => './'
pod 'TIoTLinkKit/LinkRTC', :path => './'
pod 'TIoTLinkVideo', :path => './'
pod 'TIoTLinkKit_IJKPlayer', '2.0.15'
end
#older OS versions does not contain 'libarclite', at least iOS 11
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "11.0"
end
end
end