From 318ddc72276dc297bda75789d6eafcddb754b11c Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 18 Jul 2019 12:45:49 -0700 Subject: Android: ensure higher build number for arm64 APK Google Play allows uploading two APKs, but only if the arm64 one has a higher build number. Signed-off-by: Dirk Hohndel --- packaging/android/android-build-wrapper.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'packaging') diff --git a/packaging/android/android-build-wrapper.sh b/packaging/android/android-build-wrapper.sh index 3bcac04c1..f5da7cabb 100755 --- a/packaging/android/android-build-wrapper.sh +++ b/packaging/android/android-build-wrapper.sh @@ -154,9 +154,15 @@ rm -df ./subsurface-mobile-build-arm/AndroidManifest.xml if [ "$USE_X" ] ; then bash "$USE_X" "$SUBSURFACE_SOURCE"/packaging/android/build.sh -buildnr "$BUILDNR" arm "$@" + # the arm64 APK has to have a higher build number + BUILDNR=$((BUILDNR+1)) + echo "${BUILDNR}" > ./buildnr.dat bash "$USE_X" "$SUBSURFACE_SOURCE"/packaging/android/build.sh -buildnr "$BUILDNR" arm64 "$@" else bash "$SUBSURFACE_SOURCE"/packaging/android/build.sh -buildnr "$BUILDNR" arm "$@" + # the arm64 APK has to have a higher build number + BUILDNR=$((BUILDNR+1)) + echo "${BUILDNR}" > ./buildnr.dat bash "$SUBSURFACE_SOURCE"/packaging/android/build.sh -buildnr "$BUILDNR" arm64 "$@" fi -- cgit v1.2.3-70-g09d2