Podfile 754 B

1234567891011121314151617181920212223242526272829
  1. # Uncomment this line to define a global platform for your project
  2. source 'https://github.com/xianrenzhuimeng/WMSpec.git'
  3. source 'https://github.com/CocoaPods/Specs.git'
  4. platform :ios, '11.0'
  5. target 'WMBase' do
  6. # Uncomment this line if you're using Swift or would like to use dynamic frameworks
  7. # use_frameworks!
  8. pod 'AFNetworking'
  9. pod 'Masonry'
  10. pod 'MJRefresh'
  11. pod 'MJExtension'
  12. pod 'YYCache'
  13. pod 'MBProgressHUD'
  14. pod 'SDWebImage'
  15. pod 'YTKNetwork'
  16. pod 'QMUIKit'
  17. pod 'Toast'
  18. pod 'CTMediator'
  19. end
  20. post_install do |installer|
  21. installer.pods_project.targets.each do |target|
  22. target.build_configurations.each do |config|
  23. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  24. end
  25. end
  26. end