From 6f3b068f2175c81645a38a7303c0c61cc58db976 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Thu, 17 Oct 2019 10:12:41 -0700 Subject: [PATCH] Don't include bitness in version code --- tools/update_android_version.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/update_android_version.sh b/tools/update_android_version.sh index 823249ad1..1f6dc2886 100755 --- a/tools/update_android_version.sh +++ b/tools/update_android_version.sh @@ -9,12 +9,6 @@ VERSIONCODE=$(($(($minor*10000)) + $VERSIONCODE)) VERSIONCODE=$(($(($patch*1000)) + $VERSIONCODE)) VERSIONCODE=$(($(($dev)) + $VERSIONCODE)) -# The android versionCode is for the entire package. It is the same for the 32 and 64 bit APKs. -# At one point it was thought the versionCode was specific to APK. Hence the 32/64 bitness was -# included as a prefix. That was incorrect. But now we are stuck with version codes starting with -# a prefix of 64. -VERSIONCODE=64$VERSIONCODE - MANIFEST_FILE=android/AndroidManifest.xml # manifest package -- 2.22.0