commit c3ae1c09656d5e599a9d260c8b0e5ab9d78c94a7
parent a9185b084681ef3e6728e7eea0855367ccb367b4
Author: SomberNight <somber.night@protonmail.com>
Date: Mon, 1 Mar 2021 20:45:52 +0100
android build: (trivial) build arm64 apk first
Build the apk I use to test with first :P
This is also the one mentioned in the README copy-paste code snippets.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/android/make_apk b/contrib/android/make_apk
@@ -47,10 +47,10 @@ else
-keypass "$P4A_DEBUG_KEYALIAS_PASSWD"
fi
# build two apks (only one on Travis CI)
- export APP_ANDROID_ARCH=armeabi-v7a
+ export APP_ANDROID_ARCH=arm64-v8a
make apk
if [ ! $CI ]; then
- export APP_ANDROID_ARCH=arm64-v8a
+ export APP_ANDROID_ARCH=armeabi-v7a
make apk
fi
fi