📜  iOS 模拟器部署目标“IPHONEOS_DEPLOYMENT_TARGET”设置为 8.0,但支持的部署目标版本范围为 9.0 到 14.2.99. (在项目“Pods”的目标“Flutter”中 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:58.330000             🧑  作者: Mango

代码示例1
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