1
0

android build: only build one apk for debug builds

This commit is contained in:
SomberNight
2021-04-07 17:13:43 +02:00
parent dfc0f896b7
commit c68d73715a

View File

@@ -46,13 +46,11 @@ else
-storepass "$P4A_DEBUG_KEYSTORE_PASSWD" \
-keypass "$P4A_DEBUG_KEYALIAS_PASSWD"
fi
# build two apks (only one on Travis CI)
# only build one apk for debug build, for faster testing iterations
export APP_ANDROID_ARCH=arm64-v8a
make apk
if [ ! $CI ]; then
export APP_ANDROID_ARCH=armeabi-v7a
make apk
fi
# export APP_ANDROID_ARCH=armeabi-v7a
# make apk
fi
popd