-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPodfile
More file actions
25 lines (20 loc) · 588 Bytes
/
Podfile
File metadata and controls
25 lines (20 loc) · 588 Bytes
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
platform :ios, '14.0'
target 'LMS_StreamTest' do
use_frameworks!
pod 'CocoaAsyncSocket', '~> 7.6'
target 'LMS_StreamTestTests' do
inherit! :search_paths
end
target 'LMS_StreamTestUITests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
config.build_settings['ENABLE_USER_SCRIPT_SANDBOXING'] = 'NO'
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end