Podfile 1.7 KB

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