1
0

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.
This commit is contained in:
SomberNight
2021-03-01 20:45:52 +01:00
parent a9185b0846
commit c3ae1c0965

View File

@@ -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