Skip to content

Commit 645cfcd

Browse files
authored
Update gradle_utils.dart and flutter.gradle to have the same versions as the documentation in file says is required. (#123213)
This was an oversight from pr https://github.com/flutter/flutter/pull/116146/files. Comments in both files indicate that the versions should be bumped together. ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord].
1 parent 7a791b5 commit 645cfcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/flutter_tools/lib/src/android/gradle_utils.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ const String templateKotlinGradlePluginVersion = '1.7.10';
3939
// The remaining projects are: plugins, and modules compiled as AARs. In modules, the ephemeral directory
4040
// `.android` is always regenerated after flutter pub get, so new versions are picked up after a
4141
// Flutter upgrade.
42-
const String compileSdkVersion = '31';
42+
const String compileSdkVersion = '33';
4343
const String minSdkVersion = '16';
44-
const String targetSdkVersion = '31';
44+
const String targetSdkVersion = '33';
4545
const String ndkVersion = '23.1.7779620';
4646

4747
// Update this when new versions of Gradle come out including minor versions

0 commit comments

Comments
 (0)