Skip to content

Commit

Permalink
#1319 | Bump versionCode multiplier from 4 to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
1t5j0y committed Feb 23, 2024
1 parent a96a2bf commit 401167b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/openchs-android/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ android {
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode System.getenv("versionCode") ? 4 * 1048576 + System.getenv("versionCode").toInteger() : 1
versionCode System.getenv("versionCode") ? 8 * 1048576 + System.getenv("versionCode").toInteger() : 1
//Our convention of versionCode from now in is to form the number from digits in versionName. E.g. for versionName 2.6.1, the versionCode should be 261. This is to avoid conflicts of versionCodes between different branches.
// Major.Minor.Patch. We should not change major version every release, just change the minor. Each number allows for two digits
// https://medium.com/@maxirosson/versioning-android-apps-d6ec171cfd82
Expand Down

0 comments on commit 401167b

Please sign in to comment.