1
0

qt6: update recipe pins, NDK, SDK, Ant, use venv for buildozer/p4a, add tomli recipe

This commit is contained in:
Sander van Grieken
2023-07-04 20:41:48 +02:00
parent 16d3db95ab
commit 770a32cf6a
18 changed files with 128 additions and 98 deletions

View File

@@ -90,16 +90,16 @@ fi
if [[ "$2" == "all" ]] ; then
# build all apks
# FIXME failures are not propagated out: we should fail the script if any arch build fails
export APP_ANDROID_ARCH=armeabi-v7a
export APP_ANDROID_ARCHS=armeabi-v7a
make $TARGET
export APP_ANDROID_ARCH=arm64-v8a
export APP_ANDROID_ARCHS=arm64-v8a
make $TARGET
#export APP_ANDROID_ARCH=x86
#export APP_ANDROID_ARCHS=x86
#make $TARGET
export APP_ANDROID_ARCH=x86_64
export APP_ANDROID_ARCHS=x86_64
make $TARGET
else
export APP_ANDROID_ARCH=$2
export APP_ANDROID_ARCHS=$2
make $TARGET
fi