Change build target from armeabi-v7a to arm64-v8a

This commit is contained in:
Hocuri
2026-03-05 18:27:08 +01:00
committed by GitHub
parent df97f4069a
commit e45fd2545e
+2 -2
View File
@@ -43,10 +43,10 @@ jobs:
ANDROID_NDK_ROOT: ${{ steps.setup-ndk.outputs.ndk-path }}
run: |
export PATH="${PATH}:${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin/"
scripts/install-toolchains.sh && scripts/ndk-make.sh armeabi-v7a
scripts/install-toolchains.sh && scripts/ndk-make.sh arm64-v8a
- name: Build APK
run: ./gradlew --no-daemon -PABI_FILTER=armeabi-v7a assembleGplayDebug
run: ./gradlew --no-daemon -PABI_FILTER=arm64-v8a assembleGplayDebug
- name: Upload APK
uses: actions/upload-artifact@v4