From fb2aa5a3872980e6539c8955d8cdb1d4cd96908e Mon Sep 17 00:00:00 2001 From: Sarto Date: Tue, 31 Mar 2026 21:26:14 +0330 Subject: [PATCH] feat: remove x86_64 ABI from Android APK build configuration --- .github/workflows/build.yml | 5 ----- android/app/build.gradle | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3444ce7..68950c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,8 +41,6 @@ jobs: - goos: android goarch: arm goarm: '7' - - goos: android - goarch: amd64 steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 @@ -118,13 +116,10 @@ jobs: # the arm64 APK only contains arm64-v8a and universal contains all three. mkdir -p android/app/src/main/jniLibs/arm64-v8a mkdir -p android/app/src/main/jniLibs/armeabi-v7a - mkdir -p android/app/src/main/jniLibs/x86_64 test -f artifacts/thefeed-client-android-arm64 cp artifacts/thefeed-client-android-arm64 android/app/src/main/jniLibs/arm64-v8a/libthefeed.so test -f artifacts/thefeed-client-android-arm cp artifacts/thefeed-client-android-arm android/app/src/main/jniLibs/armeabi-v7a/libthefeed.so - test -f artifacts/thefeed-client-android-amd64 - cp artifacts/thefeed-client-android-amd64 android/app/src/main/jniLibs/x86_64/libthefeed.so - name: Decode signing keystore if: env.KEYSTORE_BASE64 != '' diff --git a/android/app/build.gradle b/android/app/build.gradle index bb40e72..d66bec3 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -52,7 +52,7 @@ android { abi { enable true reset() - include "arm64-v8a", "armeabi-v7a", "x86_64" + include "arm64-v8a", "armeabi-v7a" universalApk true } }