Podfile 1.1 KB

1234567891011121314151617181920212223242526
  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 'BFCommonKit', :git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
  8. pod 'BFNetRequestKit', :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  9. pod 'BFUIKit', :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
  10. pod 'BFMaterialKit', :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
  11. pod 'BFFramework', :git => 'https://git.yishihui.com/iOS/BFFramework.git'
  12. pod 'BFVideoEditKit', :git => 'https://git.yishihui.com/iOS/BFVideoEditKit.git'
  13. pod 'BFAliyunNlsSDK-Swift', :git => 'https://git.yishihui.com/iOS/BFAliyunNlsSDK-Swift.git'
  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