Bump versionCode to 6; docs: versionCode bump required for Play uploads

This commit is contained in:
Tretzi
2026-04-15 10:49:42 -05:00
parent 6c312edf91
commit ba4986e8c5
2 changed files with 7 additions and 2 deletions

View File

@@ -25,6 +25,11 @@
## Create an AAB (CLI) ## Create an AAB (CLI)
Before uploading a new AAB to Google Play, make sure the app version is bumped:
- `app/build.gradle.kts``defaultConfig.versionCode` must be **unique and increasing** on Play Console.
- Update `versionName` as your human-readable release string.
From the repo root: From the repo root:
```bash ```bash

View File

@@ -13,8 +13,8 @@ android {
applicationId = "solutions.tretter.mindmachine" applicationId = "solutions.tretter.mindmachine"
minSdk = 26 minSdk = 26
targetSdk = 35 targetSdk = 35
versionCode = 5 versionCode = 6
versionName = "1.0" versionName = "1.0.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
} }