Podfile 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. #使用主分支的最新代码
  18. pod "BFMaterialKit" , :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
  19. pod "BFCommonKit" , :git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
  20. pod "BFNetRequestKit" , :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  21. pod "BFFramework" , :git => 'https://git.yishihui.com/iOS/BFFramework.git'
  22. pod 'BFUIKit' , :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
  23. pod 'BFUserLib' , :git => 'https://git.yishihui.com/iOS/BFUserLib.git'
  24. pod 'BFStuckPoint' , :git => 'https://git.yishihui.com/iOS/BFStuckPoint.git'
  25. pod 'BFRouter' , :git => 'https://git.yishihui.com/iOS/BFRouter.git'
  26. # 使用本地路径,方便修复库源代码,库和主工程目录平级使用相对路径
  27. # pod 'BFMaterialKit', :path => '../BFMaterialKit/'
  28. # pod 'BFCommonKit', :path => '../BFCommonKit/'
  29. # pod 'BFNetRequestKit', :path => '../BFNetRequestKit/'
  30. # pod 'BFFramework', :path => '../BFFramework/'
  31. # pod 'BFUIKit', :path => '../BFUIKit/'
  32. # pod 'BFUserLib', :path => '../BFUserLib/'
  33. # pod 'BFStuckPoint', :path => '../BFStuckPoint/'
  34. # pod 'BFRouter', :path => '../BFRouter/'
  35. pod 'JWTDecode','2.6.0' # Apple登陆校验库
  36. pod 'TYAttributedLabel','2.6.9' # 富文本
  37. pod 'UMCommon','7.2.9'
  38. pod 'UMDevice','1.2.0'
  39. pod 'UMCSecurityPlugins','1.0.6'
  40. pod 'UMAPM','1.2.1'
  41. # debug 模式下连接沙盒调试工具
  42. pod 'WoodPeckeriOS', :configurations => ['Debug']
  43. pre_install do |installer|
  44. Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
  45. end
  46. end