From bf53e6db09839920fd4813fbb6bcfbc79e998f15 Mon Sep 17 00:00:00 2001 From: Benjamin Halko Date: Wed, 20 Sep 2023 14:07:11 -0700 Subject: [PATCH] feat: change appID of debug builds --- app/build.gradle.kts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ff84d9a662..0e7ea14e77 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -25,6 +25,11 @@ android { } buildTypes { + debug { + applicationIdSuffix = ".debug" + resValue("string", "app_name", "ReVanced Manager Debug") + } + release { if (!project.hasProperty("noProguard")) { isMinifyEnabled = true @@ -33,6 +38,8 @@ android { } if (project.hasProperty("signAsDebug")) { + applicationIdSuffix = ".debug" + resValue("string", "app_name", "ReVanced Manager Debug") signingConfig = signingConfigs.getByName("debug") } }