123456789101112131415161718192021222324252627 |
- use_frameworks!
- platform :ios, '10.0'
- source 'https://github.com/CocoaPods/Specs.git'
- source 'https://git.yishihui.com/iOS/BFSpecs.git'
- target 'BFRecordScreenKit_Example' do
- pod 'BFRecordScreenKit', :path => '../'
- pod 'BFMaterialKit', :path => '../../BFMaterialKit/'
- pod 'BFCommonKit', :path => '../../BFCommonKit/'
- pod 'BFNetRequestKit', :path => '../../BFNetRequestKit/'
- pod 'BFFramework', :path => '../../BFFramework/'
- pod 'BFUIKit', :path => '../../BFUIKit/'
- pod 'BFVideoEditKit', :path => '../../BFVideoEditKit/'
- pod 'BFAliyunNlsSDK-Swift', :path => '../../BFAliyunNlsSDK-Swift/'
-
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- #if target.name =="App" || target.name =="App1"
- target.build_configurations.each do |config|
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
- end
- #end
- end
- end
-
- end
|