Podfile 1.3 KB

123456789101112131415161718192021222324252627282930313233
  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. # pod "BFFramework" ,:git => 'https://git.yishihui.com/iOS/BFFramework.git', :tag => '1.0.4'
  9. #使用主分支的最新代码
  10. pod "BFMaterialKit" ,:git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
  11. pod "BFCommonKit" ,:git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
  12. pod "BFNetRequestKit" ,:git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
  13. pod "BFFramework" ,:git => 'https://git.yishihui.com/iOS/BFFramework.git'
  14. # 使用本地路径,方便修复库源代码,库和主工程目录平级使用相对路径
  15. # pod 'BFMaterialKit', :path => '../BFMaterialKit/'
  16. # pod 'BFCommonKit', :path => '../BFCommonKit/'
  17. # pod 'BFNetRequestKit', :path => '../BFNetRequestKit/'
  18. # pod 'BFFramework', :path => '../BFFramework/'
  19. pod 'JWTDecode','2.6.0' # Apple登陆校验库
  20. pod 'TYAttributedLabel','2.6.9' # 富文本
  21. pod 'UMCommon','7.2.9'
  22. pod 'UMDevice','1.2.0'
  23. pod 'UMCSecurityPlugins','1.0.6'
  24. pod 'UMAPM','1.2.1'
  25. # debug 模式下连接沙盒调试工具
  26. pod 'WoodPeckeriOS', :configurations => ['Debug']
  27. end