12345678910111213141516171819202122232425262728293031323334 |
- # Uncomment the next line to define a global platform for your project
- platform :ios, '9.0'
- # 忽略引入库的所有警告(强迫症者的福音啊)
- inhibit_all_warnings!
- target 'MusicGradeExam' do
- # Comment the next line if you don't want to use dynamic frameworks
- # use_frameworks!
- pod 'MJExtension', '~> 3.0.13'
- pod 'AFNetworking', '~> 4.0'
- pod 'Masonry', '~> 1.0.2'
- pod 'MBProgressHUD', '~> 1.0.0'
- pod 'SDWebImage', '~> 3.8.2'
- pod 'MJRefresh', '~> 3.1.12'
- pod 'IQKeyboardManager', '~> 6.0.6'
- pod 'YYKit'
- pod 'Reachability', '~> 3.2'
- pod 'JPush', '3.2.2-noidfa'
- pod 'Bugly'
- # pod 'UMCCommon'
- # Pods for MusicGradeExam
- target 'MusicGradeExamTests' do
- inherit! :search_paths
- # Pods for testing
- end
- target 'MusicGradeExamUITests' do
- # Pods for testing
- end
- end
|