Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
bump to 36 post merge
  • Loading branch information
jesswrd committed Jun 3, 2025
commit fe570eae63fc7ec5d78b9a97cbf96c62d13132c5
4 changes: 2 additions & 2 deletions script/tool/lib/src/create_all_packages_app_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ dependencies {}
gradleFile,
replacements: <String, List<String>>{
if (gradleFileIsKotlin)
'compileSdk': <String>['compileSdk = 35']
'compileSdk': <String>['compileSdk = 36']
else ...<String, List<String>>{
'compileSdkVersion': <String>['compileSdk 35'],
'compileSdkVersion': <String>['compileSdk 36'],
}
},
regexReplacements: <RegExp, List<String>>{
Expand Down
4 changes: 2 additions & 2 deletions script/tool/test/create_all_packages_app_command_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ android {
buildGradle,
containsAll(<Matcher>[
contains('This is the legacy file'),
contains('compileSdk 35'),
contains('compileSdk 36'),
]));
});

Expand Down Expand Up @@ -372,7 +372,7 @@ android {
expect(
buildGradle,
containsAll(<Matcher>[
contains('compileSdk 35'),
contains('compileSdk 36'),
contains('androidx.lifecycle:lifecycle-runtime'),
]));
});
Expand Down