-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
42 lines (33 loc) · 955 Bytes
/
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
platform :ios, '14.3'
inhibit_all_warnings!
use_frameworks!
source 'https://cdn.cocoapods.org/'
source 'https://github.com/somia/ninchat-podspecs.git'
def libraries
pod 'AnyCodable-FlightSchool', '~> 0.2.3'
pod 'AutoLayoutSwift', '4.0.0'
pod 'NinchatLowLevelClient', '~> 0.6.0'
pod 'JitsiWebRTC', '106.0.0'
end
target 'NinchatSDKSwift' do
libraries
target 'NinchatSDKSwiftTests' do
inherit! :search_paths
libraries
end
target 'NinchatSDKSwiftServerTests' do
inherit! :search_paths
libraries
end
end
post_install do |pi|
pi.pods_project.build_configurations.each do |config|
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.3'
end
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end