Podfile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. post_install do |installer|
  22. installer.pods_project.targets.each do |target|
  23. #if target.name =="App" || target.name =="App1"
  24. target.build_configurations.each do |config|
  25. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
  26. end
  27. #end
  28. end
  29. end
  30. end