当我尝试将我的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
1条答案
按热度按时间hfyxw5xn1#
您必须将pod文件中
root/ios/Podfile
处的这一行更改为所需的目标版本。然后您最好重新安装所有pod或执行
repo update
快乐编码:)