Skip to content

Commit bbb2dd8

Browse files
committed
fix: change deployment target
1 parent cb66439 commit bbb2dd8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/macos/Podfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,11 @@ end
4141
post_install do |installer|
4242
installer.pods_project.targets.each do |target|
4343
flutter_additional_macos_build_settings(target)
44+
45+
target.build_configurations.each do |config|
46+
if config.build_settings['MACOSX_DEPLOYMENT_TARGET'].to_f < 10.13
47+
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.13'
48+
end
49+
end
4450
end
4551
end

0 commit comments

Comments
 (0)