summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-06-25 15:36:51 +0100
committerrubenwardy <rw@rubenwardy.com>2020-06-25 15:40:37 +0100
commit3014e8b33b3d14165cc207be13631f4ee9a8fd2e (patch)
tree7c90360ab64222e3a8dff61520ed30b816ca1133 /util
parentee6c499ff8b9abf0d22ebc817a26f33322ffdd5b (diff)
downloadminetest-3014e8b33b3d14165cc207be13631f4ee9a8fd2e.tar.gz
minetest-3014e8b33b3d14165cc207be13631f4ee9a8fd2e.tar.bz2
minetest-3014e8b33b3d14165cc207be13631f4ee9a8fd2e.zip
Release test build to Android beta program
Diffstat (limited to 'util')
-rwxr-xr-xutil/bump_version.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/bump_version.sh b/util/bump_version.sh
index ad1c9e1cd..58509198a 100755
--- a/util/bump_version.sh
+++ b/util/bump_version.sh
@@ -90,7 +90,8 @@ RELEASE_VERSION="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH"
echo "Current Minetest version: $RELEASE_VERSION"
echo "Current Android version code: $ANDROID_VERSION_CODE"
-NEW_ANDROID_VERSION_CODE=$(expr $ANDROID_VERSION_CODE + 1)
+# +1 for ARM and +1 for ARM64 APKs
+NEW_ANDROID_VERSION_CODE=$(expr $ANDROID_VERSION_CODE + 2)
NEW_ANDROID_VERSION_CODE=$(prompt_for_number "Set android version code" $NEW_ANDROID_VERSION_CODE)
echo