美文网首页
'IPHONEOS_DEPLOYMENT_TARGET' is

'IPHONEOS_DEPLOYMENT_TARGET' is

作者: ChaosHeart | 来源:发表于2020-12-12 09:53 被阅读0次

问题:

截屏2020-12-11 08.11.35.png

解决:

在Podfile中的最下边将

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    end
end

替换为

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
      target.build_configurations.each do |config|
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = ‘9.0’
      end
    end
end

注意:

platform : ios, '9.0'

config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = ‘9.0’
需要一致


截屏2020-12-12 09.52.39.png

相关文章

网友评论

      本文标题:'IPHONEOS_DEPLOYMENT_TARGET' is

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