Unverified Commit 645cfcdd authored by Reid Baker's avatar Reid Baker Committed by GitHub

Update gradle_utils.dart and flutter.gradle to have the same versions as the...

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].
parent 7a791b5d
......@@ -39,9 +39,9 @@ const String templateKotlinGradlePluginVersion = '1.7.10';
// The remaining projects are: plugins, and modules compiled as AARs. In modules, the ephemeral directory
// `.android` is always regenerated after flutter pub get, so new versions are picked up after a
// Flutter upgrade.
const String compileSdkVersion = '31';
const String compileSdkVersion = '33';
const String minSdkVersion = '16';
const String targetSdkVersion = '31';
const String targetSdkVersion = '33';
const String ndkVersion = '23.1.7779620';
// Update this when new versions of Gradle come out including minor versions
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment