feat: remove x86_64 ABI from Android APK build configuration

This commit is contained in:
Sarto
2026-03-31 21:26:14 +03:30
parent 1ab72988cc
commit fb2aa5a387
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -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 != ''