Podfile 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. ## Pods-for-AppStore
  8. # pod 'BFCommonKit', '1.4.9'
  9. # pod 'BFNetRequestKit', '0.2.3'
  10. # pod 'BFUIKit', '0.1.1'
  11. # pod 'BFMaterialKit', '0.1.6'
  12. # pod 'BFLogger', '0.1.0'
  13. # pod 'BFMediaKit', '0.1.0'
  14. ## Pods-for-Archive(Jenkins)
  15. pod 'BFCommonKit', :git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
  16. pod 'BFNetRequestKit', :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  17. pod 'BFUIKit', :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
  18. pod 'BFMaterialKit', :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
  19. pod 'BFLogger', :git => 'https://git.yishihui.com/iOS/BFLogger.git'
  20. pod 'BFMediaKit', :git => 'https://git.yishihui.com/iOS/BFMediaKit.git'
  21. ## ak:Pods-for-testing
  22. # pod 'BFCommonKit', :path => '/Users/ak/Desktop/TZFrameworks/BFCommonKit/'
  23. # pod 'BFNetRequestKit', :path => '/Users/ak/Desktop/TZFrameworks/BFNetRequestKit/'
  24. # pod 'BFUIKit', :path => '/Users/ak/Desktop/TZFrameworks/BFUIKit/'
  25. # pod 'BFMaterialKit', :path => '/Users/ak/Desktop/TZFrameworks/BFMaterialKit/'
  26. # pod 'BFLogger', :path => '/Users/ak/Desktop/TZFrameworks/BFLogger/'
  27. # pod 'BFMediaKit', :path => '/Users/ak/Desktop/TZFrameworks/BFMediaKit/'
  28. ## zq:Pods-for-testing
  29. # pod 'BFCommonKit', :path => '../BFCommonKit/'
  30. # pod 'BFNetRequestKit', :path => '../BFNetRequestKit/'
  31. # pod 'BFUIKit', :path => '../BFUIKit/'
  32. # pod 'BFMaterialKit', :path => '../BFMaterialKit/'
  33. # pod 'BFLogger', :path => '../BFLogger/'
  34. # pod 'BFMediaKit', :path => '../BFMediaKit/'
  35. ## ww:Pods-for-testing
  36. # pod 'BFCommonKit', :path => '../../../BFCommonKit/Trunk'
  37. # pod 'BFNetRequestKit', :path => '../../../BFNetRequestKit/Trunk'
  38. # pod 'BFUIKit', :path => '../../../BFUIKit/Trunk'
  39. # pod 'BFMaterialKit', :path => '../../../BFMaterialKit/Trunk'
  40. # pod 'BFLogger', :path => '../../../BFLogger/Trunk'
  41. # pod 'BFMediaKit', :path => '../../../BFMediaKit/Trunk'
  42. post_install do |installer|
  43. installer.pods_project.targets.each do |target|
  44. #if target.name =="App" || target.name =="App1"
  45. target.build_configurations.each do |config|
  46. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
  47. end
  48. #end
  49. end
  50. end
  51. end