-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
50 lines (40 loc) · 1.16 KB
/
Podfile
File metadata and controls
50 lines (40 loc) · 1.16 KB
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
platform :ios, '13.0'
target 'RCSDemo' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for RCSDemo
# Rong Cloud
pod 'RongCloudOpenSource/IMKit', '5.6.1'
# pod 'RongCloudOpenSource/IMKit', '5.1.9.4'
# pod 'RongCloudOpenSource/IMKit', '5.0.0'
# pod 'RongCloudOpenSource/Sight'
# pod 'RongCloudOpenSource/RongSticker', '5.4.7'
# pod 'RongCloudOpenSource/ContactCard'
# pod 'RongCloudOpenSource/IFly'
# pod 'RongCloudOpenSource/LocationKit'
# pod 'RongCloudOpenSource/RongCallKit'
# pod 'RongCloudOpenSource/IMKit', :path=>'~/workspace/ios-ui-sdk-set'
# Common
pod 'Masonry'
pod 'Aspects'
pod 'AFNetworking'
# Other
# pod 'AgoraAudio_iOS'
target 'RCSDemoTests' do
inherit! :search_paths
# Pods for testing
#pod 'OCMock'
end
target 'RCSDemoUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end