From 54443240669021928af5d3cd4d9f49f20d1cdf07 Mon Sep 17 00:00:00 2001 From: UC-HOBA Date: Tue, 1 Mar 2022 17:58:32 +0800 Subject: [PATCH] chore: fix ios deploymeny to 11.0 in Podfile --- ios/Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Podfile b/ios/Podfile index 9d1c035..5d16158 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -38,7 +38,7 @@ 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.delete 'IPHONEOS_DEPLOYMENT_TARGET' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' end end end