Podfile
459 字节
platform :ios, '13.0'
target 'AoleiSports' do
use_frameworks!
pod 'Alamofire', '~> 5.9.1'
pod 'R.swift', '~> 7.3.2'
pod 'CocoaLumberjack/Swift'
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 < 13.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end