Skip to content

Commit ecba2db

Browse files
authored
Bump create_all_packages_command CompileSdk to 36 (flutter#9293)
Bumps the `create_all_packages_command` `compileSdk` to 36. The test targets will test against the bump. Partially Adresses flutter/flutter#163071 ## Pre-Review Checklist [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent 2bac766 commit ecba2db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

script/tool/lib/src/create_all_packages_app_command.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ dependencies {}
243243
gradleFile,
244244
replacements: <String, List<String>>{
245245
if (gradleFileIsKotlin)
246-
'compileSdk': <String>['compileSdk = 35']
246+
'compileSdk': <String>['compileSdk = 36']
247247
else ...<String, List<String>>{
248-
'compileSdkVersion': <String>['compileSdk 35'],
248+
'compileSdkVersion': <String>['compileSdk 36'],
249249
}
250250
},
251251
regexReplacements: <RegExp, List<String>>{

script/tool/test/create_all_packages_app_command_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ android {
339339
buildGradle,
340340
containsAll(<Matcher>[
341341
contains('This is the legacy file'),
342-
contains('compileSdk 35'),
342+
contains('compileSdk 36'),
343343
]));
344344
});
345345

@@ -372,7 +372,7 @@ android {
372372
expect(
373373
buildGradle,
374374
containsAll(<Matcher>[
375-
contains('compileSdk 35'),
375+
contains('compileSdk 36'),
376376
contains('androidx.lifecycle:lifecycle-runtime'),
377377
]));
378378
});

0 commit comments

Comments
 (0)