Podfile 775 B

123456789101112131415161718192021222324252627282930
  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. pod 'BRPickerView'
  20. end
  21. post_install do |installer|
  22. installer.pods_project.targets.each do |target|
  23. target.build_configurations.each do |config|
  24. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  25. end
  26. end
  27. end