| 1234567891011121314151617181920212223242526272829 | # Uncomment this line to define a global platform for your projectsource 'https://github.com/xianrenzhuimeng/WMSpec.git'source 'https://github.com/CocoaPods/Specs.git'platform :ios, '11.0'target 'WMBase' do  # Uncomment this line if you're using Swift or would like to use dynamic frameworks  # use_frameworks!  pod 'AFNetworking'  pod 'Masonry'  pod 'MJRefresh'  pod 'MJExtension'  pod 'YYCache'  pod 'MBProgressHUD'  pod 'SDWebImage'  pod 'YTKNetwork'  pod 'QMUIKit'  pod 'Toast'  pod 'CTMediator'endpost_install do |installer|    installer.pods_project.targets.each do |target|        target.build_configurations.each do |config|            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'        end    endend
 |