Podfile 883 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '9.0'
  3. # 忽略引入库的所有警告(强迫症者的福音啊)
  4. inhibit_all_warnings!
  5. target 'MusicGradeExam' do
  6. # Comment the next line if you don't want to use dynamic frameworks
  7. # use_frameworks!
  8. pod 'MJExtension', '~> 3.0.13'
  9. pod 'AFNetworking', '~> 4.0'
  10. pod 'Masonry', '~> 1.0.2'
  11. pod 'MBProgressHUD', '~> 1.0.0'
  12. pod 'SDWebImage', '~> 3.8.2'
  13. pod 'MJRefresh', '~> 3.1.12'
  14. pod 'IQKeyboardManager', '~> 6.0.6'
  15. pod 'YYKit'
  16. pod 'Reachability', '~> 3.2'
  17. pod 'JCore', '2.1.4-noidfa'
  18. pod 'JPush', '3.2.4-noidfa'
  19. pod 'Bugly'
  20. pod 'HMSegmentedControl'
  21. # pod 'UMCCommon'
  22. # Pods for MusicGradeExam
  23. target 'MusicGradeExamTests' do
  24. inherit! :search_paths
  25. # Pods for testing
  26. end
  27. target 'MusicGradeExamUITests' do
  28. # Pods for testing
  29. end
  30. end