Unverified Commit 00a83235 authored by Gray Mackall's avatar Gray Mackall Committed by GitHub

Add documentation in flutter.groovy noting that we always use the latest...

Add documentation in flutter.groovy noting that we always use the latest available android version (#131705)

Last piece of/
Fixes https://github.com/flutter/flutter/issues/131425

Also added a period to a comment line that was missing one.
parent 253bd3d4
......@@ -49,13 +49,18 @@ class FlutterExtension {
/** Sets the minSdkVersion used by default in Flutter app projects. */
static int minSdkVersion = 19
/** Sets the targetSdkVersion used by default in Flutter app projects. */
/**
* Sets the targetSdkVersion used by default in Flutter app projects.
* targetSdkVersion should always be the latest available stable version.
*
* See https://developer.android.com/guide/topics/manifest/uses-sdk-element.
*/
static int targetSdkVersion = 33
/**
* Sets the ndkVersion used by default in Flutter app projects.
* Chosen as default version of the AGP version below as found in
* https://developer.android.com/studio/projects/install-ndk#default-ndk-per-agp
* https://developer.android.com/studio/projects/install-ndk#default-ndk-per-agp.
*/
static String ndkVersion = "23.1.7779620"
......
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