Podfile 790 B

12345678910111213141516171819202122232425262728293031
  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 'YYText'
  14. pod 'MBProgressHUD'
  15. pod 'SDWebImage'
  16. pod 'YTKNetwork'
  17. pod 'QMUIKit'
  18. pod 'Toast'
  19. pod 'CTMediator'
  20. pod 'BRPickerView'
  21. end
  22. post_install do |installer|
  23. installer.pods_project.targets.each do |target|
  24. target.build_configurations.each do |config|
  25. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  26. end
  27. end
  28. end