You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
517 B
21 lines
517 B
platform :ios, '11.0'
|
|
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
use_frameworks!
|
|
|
|
target 'kplayer' do
|
|
pod 'Alamofire' #, '4.7'
|
|
pod 'HanekeSwift', :git => 'https://github.com/Haneke/HanekeSwift.git'
|
|
pod 'FileBrowser'
|
|
pod 'ZIPFoundation'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.generated_projects.each do |project|
|
|
project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
|
|
end
|
|
end
|
|
end
|
|
end
|