Podfile 931 B

123456789101112131415161718192021222324252627
  1. use_frameworks!
  2. platform :ios, '10.0'
  3. source 'https://github.com/CocoaPods/Specs.git'
  4. source 'https://git.yishihui.com/iOS/BFSpecs.git'
  5. target 'BFRecordScreenKit_Example' do
  6. pod 'BFRecordScreenKit', :path => '../'
  7. pod 'BFMaterialKit', :path => '../../BFMaterialKit/'
  8. pod 'BFCommonKit', :path => '../../BFCommonKit/'
  9. pod 'BFNetRequestKit', :path => '../../BFNetRequestKit/'
  10. pod 'BFFramework', :path => '../../BFFramework/'
  11. pod 'BFUIKit', :path => '../../BFUIKit/'
  12. pod 'BFVideoEditKit', :path => '../../BFVideoEditKit/'
  13. pod 'BFAliyunNlsSDK-Swift', :path => '../../BFAliyunNlsSDK-Swift/'
  14. post_install do |installer|
  15. installer.pods_project.targets.each do |target|
  16. #if target.name =="App" || target.name =="App1"
  17. target.build_configurations.each do |config|
  18. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
  19. end
  20. #end
  21. end
  22. end
  23. end