Podfile 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. platform :ios, '10.0'
  2. target 'MusicVideoPlus' do
  3. # Comment the next line if you don't want to use dynamic frameworks
  4. use_frameworks!
  5. source 'https://github.com/CocoaPods/Specs.git'
  6. # source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  7. # source 'https://git.yishihui.com/iOS/BFSpecs.git'
  8. #使用指定tag
  9. # pod "BFMaterialKit" , :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git' , :tag => '0.1.5'
  10. # pod "BFCommonKit" , :git => 'https://git.yishihui.com/iOS/BFCommonKit.git' , :tag => '1.4.8'
  11. # pod "BFNetRequestKit" , :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git', :tag => '0.2.1'
  12. # pod "BFFramework" , :git => 'https://git.yishihui.com/iOS/BFFramework.git' , :tag => '1.0.6'
  13. # pod 'BFUIKit' , :git => 'https://git.yishihui.com/iOS/BFUIKit.git' , :tag => '0.1.0'
  14. # pod 'BFUserLib' , :git => 'https://git.yishihui.com/iOS/BFUserLib.git' , :tag => '0.1.0'
  15. # pod 'BFStuckPoint' , :git => 'https://git.yishihui.com/iOS/BFStuckPoint.git' , :tag => '0.1.0'
  16. # pod 'BFRouter' , :git => 'https://git.yishihui.com/iOS/BFRouter.git' , :tag => '0.1.0'
  17. # pod 'BFLogger' , :git => 'https://git.yishihui.com/iOS/BFLogger.git' , :tag => '0.1.0'
  18. #使用主分支的最新代码
  19. # pod "BFMaterialKit" , :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git' , :branch => 'module'
  20. # pod "BFCommonKit" , :git => 'https://git.yishihui.com/iOS/BFCommonKit.git' , :branch => 'module'
  21. # pod "BFNetRequestKit" , :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  22. # pod "BFFramework" , :git => 'https://git.yishihui.com/iOS/BFFramework.git' , :branch => 'module'
  23. # pod 'BFUIKit' , :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
  24. # pod 'BFUserLib' , :git => 'https://git.yishihui.com/iOS/BFUserLib.git'
  25. # pod 'BFStuckPoint' , :git => 'https://git.yishihui.com/iOS/BFStuckPoint.git'
  26. # pod 'BFRouter' , :git => 'https://git.yishihui.com/iOS/BFRouter.git'
  27. # pod 'BFLogger' , :git => 'https://git.yishihui.com/iOS/BFLogger.git'
  28. # 使用本地路径,方便修复库源代码,库和主工程目录平级使用相对路径
  29. pod 'BFMaterialKit', :path => '../BFMaterialKit/'
  30. pod 'BFCommonKit', :path => '../BFCommonKit/'
  31. pod 'BFNetRequestKit', :path => '../BFNetRequestKit/'
  32. pod 'BFAnalyzeKit', :path => '../BFAnalyzeKit/'
  33. pod 'BFUIKit', :path => '../BFUIKit/'
  34. pod 'BFFFmpeglib', :path => '../BFFFmpeglib/'
  35. pod 'BFMediaKit', :path => '../BFMediaKit/'
  36. pod 'BFStuckPointKit', :path => '../BFStuckPointKit/'
  37. pod 'BFLogger', :path => '../BFLogger/'
  38. pod 'BFVideoEditKit', :path => '../BFVideoEditKit'
  39. pod 'BFUploadKit', :path => '../BFUploadKit'
  40. pod 'BFAliyunNlsSDK-Swift', :path => '../BFAliyunNlsSDK-Swift'
  41. pod 'JWTDecode','2.6.0' # Apple登陆校验库
  42. pod 'TYAttributedLabel','2.6.9' # 富文本
  43. pod 'UMCommon','7.2.9'
  44. pod 'UMDevice','1.2.0'
  45. pod 'UMCSecurityPlugins','1.0.6'
  46. pod 'UMAPM','1.2.1'
  47. # debug 模式下连接沙盒调试工具
  48. pod 'WoodPeckeriOS', :configurations => ['Debug']
  49. # pod 'Bugly', '2.5.91'
  50. pre_install do |installer|
  51. Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
  52. end
  53. end