| 1234567891011121314151617181920212223242526 | platform :ios, '10.0'target 'MusicVideoPlus' do  # Comment the next line if you don't want to use dynamic frameworks  use_frameworks!  #source 'https://github.com/CocoaPods/Specs.git'  source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'  source 'https://git.yishihui.com/iOS/BFSpecs.git'#  pod "BFFramework" ,:git => 'https://git.yishihui.com/iOS/BFFramework.git', :tag => '1.0.4'#  pod 'BFFramework', :git => 'https://git.yishihui.com/iOS/BFFramework.git', :branch => 'mv-dev-130'   pod "BFFramework" ,:git => 'https://git.yishihui.com/iOS/BFFramework.git'  # 使用本地路径#  pod 'BFFramework', :path => '../BFFramework/'#  pod 'BFFramework', :path => '/Users/ak/Desktop/BFFramework/'#  pod 'BFFramework', :path => '/Users/sanw/Desktop/BytesFlow/Projects/BFFramework/'  pod 'JWTDecode','2.6.0' # Apple登陆校验库  pod 'TYAttributedLabel','2.6.9' #  富文本  pod 'UMCommon','7.2.9'  pod 'UMDevice','1.2.0'  pod 'UMCSecurityPlugins','1.0.6'  pod 'UMAPM','1.2.1'  # debug 模式下连接沙盒调试工具   pod 'WoodPeckeriOS', :configurations => ['Debug']end
 |