Podfile 826 B

1234567891011121314151617181920212223242526272829303132333435
  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 'JPush', '3.2.2-noidfa'
  18. pod 'Bugly'
  19. # pod 'UMCCommon'
  20. # Pods for MusicGradeExam
  21. target 'MusicGradeExamTests' do
  22. inherit! :search_paths
  23. # Pods for testing
  24. end
  25. target 'MusicGradeExamUITests' do
  26. # Pods for testing
  27. end
  28. end