Skip to content

Commit c5e5dbf

Browse files
Raise min iOS version for the build-all app
1 parent 6570b75 commit c5e5dbf

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

script/configs/exclude_all_packages_app.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# time (if they did, it would be impossible to select the SDK-specific
2121
# version).
2222
- google_maps_flutter_ios
23-
# We can't test both SDK 9 and SDK 10, so arbitrarly use the latest as
24-
# the test of overriding the endorsement.
25-
- google_maps_flutter_ios_sdk9
23+
# We can't test both SDK 9 and SDK 10; use 9 (excluding everything but 9)
24+
# so that the min iOS version of the build-all app doesn't need to be
25+
# raised any higher than necessary.
26+
- google_maps_flutter_ios_sdk10

script/tool/lib/src/create_all_packages_app_command.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,9 +457,9 @@ dev_dependencies:${_pubspecMapString(pubspec.devDependencies)}
457457
_adjustFile(
458458
pbxprojFile,
459459
replacements: <String, List<String>>{
460-
// iOS 14 is required by google_maps_flutter.
460+
// iOS 15 is required by google_maps_flutter_ios_sdk9.
461461
'IPHONEOS_DEPLOYMENT_TARGET': <String>[
462-
' IPHONEOS_DEPLOYMENT_TARGET = 14.0;',
462+
' IPHONEOS_DEPLOYMENT_TARGET = 15.0;',
463463
],
464464
},
465465
);

0 commit comments

Comments
 (0)