From 6a4ffc87fc7cf1df8b21f712d94db76fafd3b53a Mon Sep 17 00:00:00 2001 From: NoCrypt <57245077+NoCrypt@users.noreply.github.com> Date: Thu, 1 Aug 2024 19:16:31 +0700 Subject: [PATCH] revert: split build on release --- capacitor/android/app/build.gradle | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/capacitor/android/app/build.gradle b/capacitor/android/app/build.gradle index 8a504ee..5820a16 100644 --- a/capacitor/android/app/build.gradle +++ b/capacitor/android/app/build.gradle @@ -31,22 +31,14 @@ android { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - splits { - abi { - enable true - reset() - include "armeabi-v7a", "arm64-v8a", "x86_64" - universalApk true - } - } } - - debug { - splits { - abi { - enable false - } - } + } + splits { + abi { + enable true + reset() + include "armeabi-v7a", "arm64-v8a", "x86_64" + universalApk true } } }