美文网首页
IPHONEOS_DEPLOYMENT_TARGET is se

IPHONEOS_DEPLOYMENT_TARGET is se

作者: 90后的晨仔 | 来源:发表于2021-05-17 19:04 被阅读0次

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

  • 解决方法一(我使用的是这种方法):
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

相关文章

网友评论

      本文标题:IPHONEOS_DEPLOYMENT_TARGET is se

      本文链接:https://www.haomeiwen.com/subject/iytsjltx.html