Flutter iOS构建警告

dohp0rv5  于 2022-12-30  发布在  Flutter
关注(0)|答案(1)|浏览(172)

当我尝试将我的flutter产品存档以便发布时,我收到了很多警告,如下所示。
最低部署iOS版本:12
Xcode版本:14.2
用于安装的我的POD文件如下:

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['ENABLE_BITCODE'] = 'NO'
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
    end
  end
end

hfyxw5xn

hfyxw5xn1#

您必须将pod文件中root/ios/Podfile处的这一行更改为所需的目标版本。

然后您最好重新安装所有pod或执行repo update
快乐编码:)

相关问题