Flutter ios pod install 更改部署目标

Flutter ios pod install changes deployment target

所以我正在尝试为 ios 构建我的 Flutter 应用程序,我的最低部署目标是 ios 11(因为我使用了一些其他插件)

但是 pod install 将 DKPhotoGallery pods 的目标设置为 ios 9 导致构建失败, 我可以在 Xcode 手动将它更改为 ios 11 然后我可以成功构建它,

但是由于 flutter 运行 调用 'pod install' 它将它改回 ios 9 并且它失败了,我该如何解决这个问题?

您可以在 Podfile 中将平台更改为 platform :ios, '11',它位于 Podfile 的第一行

将此添加到 pod 文件的末尾

请更改要求IPHONEOS_DEPLOYMENT_TARGET

post_install do |pi|
    pi.pods_project.targets.each do |t|
        t.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
        end
    end
end