From 6436a1ec61159916edaa655fa3f6aa27c2781415 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Tue, 15 Aug 2023 20:37:43 +0700 Subject: [PATCH] build: debug apk come with application suffix Instead of using the same one as Release, app.revanced.manager.flutter - We add .debug to it, yay, co-installation of two variants! --- android/app/build.gradle | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 65711fda..0f849f6c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -59,6 +59,15 @@ android { abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64' } } + debug { + shrinkResources false + minifyEnabled false + signingConfig signingConfigs.debug + applicationIdSuffix ".debug" + ndk { + abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64' + } + } } packagingOptions {