IPHONEOS_DEPLOYMENT_TARGET is se

2021-05-17  本文已影响0人  90后的晨仔

这里有解决方法这里记录一下。

Code Block 
post_install do |installer|
 installer.pods_project.targets.each do |target|
  target.build_configurations.each do |config|
   config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
  end
 end
end
post_install do |installer|
 installer.pods_project.targets.each do |target|
  target.build_configurations.each do |config|
   config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
  end
 end
end
上一篇 下一篇

猜你喜欢

热点阅读