From f1577584e5b0e2c9a741da810eff648d87678902 Mon Sep 17 00:00:00 2001 From: Zane Schepke Date: Wed, 15 May 2024 17:28:56 -0400 Subject: [PATCH] fix: remove abi split (#50) --- app/build.gradle.kts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 4581460..2fa86dc 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -183,16 +183,6 @@ android { if (isBundleBuild()) { defaultConfig.ndk.abiFilters("arm64-v8a") - } else { - splits { - abi { - isEnable = true - reset() - // TODO x86_64 for ChromeOS - include("arm64-v8a") - isUniversalApk = isReleaseBuild() - } - } } }