Podfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. pod "BFFramework", :git => 'https://git.yishihui.com/iOS/BFFramework.git'
  15. pod "BFMaterialKit", :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
  16. pod "BFCommonKit", :git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
  17. pod "BFNetRequestKit", :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  18. pod "BFUIKit", :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
  19. pod "BFVideoEditKit", :git => 'https://git.yishihui.com/iOS/BFVideoEditKit'
  20. pod "BFAliyunNlsSDK-Swift", :git => 'https://git.yishihui.com/iOS/BFAliyunNlsSDK-Swift.git'
  21. pod "BFVideoEditKit", :git => 'https://git.yishihui.com/iOS/BFVideoEditKit.git'
  22. post_install do |installer|
  23. installer.pods_project.targets.each do |target|
  24. #if target.name =="App" || target.name =="App1"
  25. target.build_configurations.each do |config|
  26. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
  27. end
  28. #end
  29. end
  30. end
  31. end