Podfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Uncomment the next line to define a global platform for your project
  2. use_frameworks!
  3. platform :ios, '10.0'
  4. source 'https://github.com/CocoaPods/Specs.git'
  5. source 'https://git.yishihui.com/iOS/BFSpecs.git'
  6. target 'Introduce' do
  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 'BFRecordScreenKit', :path => '../BFRecordScreenKit'
  15. # pod "BFFramework", :git => 'https://git.yishihui.com/iOS/BFFramework.git'
  16. # pod "BFMaterialKit", :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
  17. # pod "BFCommonKit", :git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
  18. # pod "BFNetRequestKit", :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  19. # pod "BFUIKit", :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
  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