diff --git a/script/tool/lib/src/create_all_packages_app_command.dart b/script/tool/lib/src/create_all_packages_app_command.dart index 2385af12657..09a9ca1c941 100644 --- a/script/tool/lib/src/create_all_packages_app_command.dart +++ b/script/tool/lib/src/create_all_packages_app_command.dart @@ -243,9 +243,9 @@ dependencies {} gradleFile, replacements: >{ if (gradleFileIsKotlin) - 'compileSdk': ['compileSdk = 35'] + 'compileSdk': ['compileSdk = 36'] else ...>{ - 'compileSdkVersion': ['compileSdk 35'], + 'compileSdkVersion': ['compileSdk 36'], } }, regexReplacements: >{ diff --git a/script/tool/test/create_all_packages_app_command_test.dart b/script/tool/test/create_all_packages_app_command_test.dart index 386a9a07a49..49384532e62 100644 --- a/script/tool/test/create_all_packages_app_command_test.dart +++ b/script/tool/test/create_all_packages_app_command_test.dart @@ -339,7 +339,7 @@ android { buildGradle, containsAll([ contains('This is the legacy file'), - contains('compileSdk 35'), + contains('compileSdk 36'), ])); }); @@ -372,7 +372,7 @@ android { expect( buildGradle, containsAll([ - contains('compileSdk 35'), + contains('compileSdk 36'), contains('androidx.lifecycle:lifecycle-runtime'), ])); });