You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#11347. Improves the 'Review the app's build configuration'
section in android.md to be more actionable.
---------
Co-authored-by: Camille Simon <[email protected]>
|`compileSdk`| The Android API level against which your app is compiled. This should be the highest version available. If you set this property to `31`, you run your app on a device running API `30` or earlier as long as your app makes uses no APIs specific to `31`. ||
492
-
|`defaultConfig`|||
493
-
|`.applicationId`| The final, unique [application ID][] that identifies your app. ||
494
-
|`.minSdk`| The [minimum Android API level][] for which you designed your app to run. |`flutter.minSdkVersion`|
495
-
|`.targetSdk`| The Android API level against which you tested your app to run. Your app should run on all Android API levels up to this one. |`flutter.targetSdkVersion`|
496
-
|`.versionCode`| A positive integer that sets an [internal version number][]. This number only determines which version is more recent than another. Greater numbers indicate more recent versions. App users never see this value. ||
497
-
|`.versionName`| A string that your app displays as its version number. Set this property as a raw string or as a reference to a string resource. ||
498
-
|`.buildToolsVersion`| The Gradle plugin specifies the default version of the Android build tools that your project uses. To specify a different version of the build tools, change this value. ||
486
+
The `applicationId` is the unique identifier for your app on the Google Play Store
487
+
and on developers' devices.
499
488
500
-
{:.table .table-striped}
489
+
:::important
490
+
Review the `applicationId` in `defaultConfig` and ensure it is unique.
491
+
Typically, this is a reverse domain name, such as `com.example.myapp`.
492
+
Once you upload your app to the Play Store, you cannot change the Application ID.
493
+
:::
501
494
502
-
To learn more about Gradle, check out the module-level build
0 commit comments