-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodfile
89 lines (80 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
use_frameworks!
platform :ios, '10.0'
target 'JXRtc' do
pod 'CBFlashyTabBarController'
pod 'Starscream'
pod 'Moya/RxSwift'
pod 'HandyJSON'
pod 'MBProgressHUD'
pod 'FLAnimatedImage'
pod "MJRefresh"
pod 'WCDB.swift'
pod 'RxCocoa'
pod "Kingfisher"
pod 'PLPlayerKit'
pod 'SnapKit'
#pod 'WebRTC-lib'
end
target 'JXRtc-Dev' do
pod 'CBFlashyTabBarController'
pod 'Starscream'
pod 'Moya/RxSwift'
pod 'HandyJSON'
pod 'MBProgressHUD'
pod 'FLAnimatedImage'
pod "MJRefresh"
pod 'WCDB.swift'
pod 'RxCocoa'
pod "Kingfisher"
pod 'PLPlayerKit'
pod 'SnapKit'
#pod 'WebRTC-lib'
end
target 'JXRtc-Pro' do
pod 'CBFlashyTabBarController'
pod 'Starscream'
pod 'Moya/RxSwift'
pod 'HandyJSON'
pod 'MBProgressHUD'
pod 'FLAnimatedImage'
pod "MJRefresh"
pod 'WCDB.swift'
pod 'RxCocoa'
pod "Kingfisher"
pod 'PLPlayerKit'
pod 'SnapKit'
#pod 'WebRTC-lib'
end
#多个target的pod引入,方式一:如每个pod都引入masonry
#targetArray = ['target1','target2']
#targetArray.each do |t|
# target t do
# pod 'Masonry', '~> 1.1.0'
# end
#end
##多个target的pod引入,方式二:如每个pod都引入masonry
#def commonPods
# pod 'Masonry', '~> 1.1.0'
#end
#
##工程一:
#target 'AnyDoorDemo' do
# commonPods
# pod 'AFNetworking', '~> 3.2.1'
#target 'AnyDoorDemoTests' do
# inherit! :search_paths
# pod 'Specta', '~> 1.0.7'
# pod 'OCMock', '~> 3.4.2'
# pod 'Expecta', '~> 1.0.6'
#end
#
# target 'AnyDoorDemoUITests' do
# inherit! :search_paths
# # Pods for testing
# end
#end
#
##工程二:
#target 'HostApp' do
# commonPods
#end