From 343e9936272bda14a7631c184a20228b1bcbe4fc Mon Sep 17 00:00:00 2001 From: wgh19 Date: Fri, 31 May 2024 20:26:42 +0800 Subject: [PATCH] fix macos build --- macos/Podfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/macos/Podfile b/macos/Podfile index 92fb488..f33a582 100644 --- a/macos/Podfile +++ b/macos/Podfile @@ -39,5 +39,8 @@ end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_macos_build_settings(target) + target.build_configurations.each do |config| + config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.14.6' + end end end