-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathPodfile
More file actions
24 lines (21 loc) · 676 Bytes
/
Copy pathPodfile
File metadata and controls
24 lines (21 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
platform :ios, '15.0'
#use_frameworks!
use_modular_headers!
inhibit_all_warnings!
install! 'cocoapods', :deterministic_uuids => false
target 'CLPlayer' do
inhibit_all_warnings!
pod 'SnapKit'
pod 'SwiftFormat/CLI'
pod 'LookinServer', :subspecs => ['Swift'], :configurations => ['Debug']
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 15.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end
end