From f190e6455a93398013c869f4a88ec2f61b9c0bce Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Mon, 20 Feb 2023 22:02:15 -0700 Subject: [PATCH] Revert "build: use split apks" Honestly, changing the version code schema is far too much of a hassle for these to be reasonable. This reverts commit 055d25e3e18df60782becee8c2867a4514c53be4. --- .github/workflows/android.yml | 2 +- app/build.gradle | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 6107b1321..8738c44dd 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -31,4 +31,4 @@ jobs: uses: actions/upload-artifact@v3.1.1 with: name: Auxio_Canary - path: ./app/build/outputs/apk/debug/*.apk + path: ./app/build/outputs/apk/debug/app-debug.apk diff --git a/app/build.gradle b/app/build.gradle index 80ef92e5b..15c5a46d7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -57,15 +57,6 @@ android { } } - splits { - abi { - enable true - reset() - include "x86", "x86_64", "arm64-v8a", "armeabi-v7a" - universalApk true - } - } - buildFeatures { viewBinding true }