From 1ab74acf1dfe38a3831bdc2afe6f9b16c9965d1c Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 30 Apr 2025 11:08:16 +0200 Subject: [PATCH] feat: Use "Debug" and "Debug signed" for build names respectively --- app/build.gradle.kts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 354a2ccd..a47ebe55 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -27,7 +27,7 @@ android { buildTypes { debug { applicationIdSuffix = ".debug" - resValue("string", "app_name", "ReVanced Manager (dev)") + resValue("string", "app_name", "ReVanced Manager (Debug)") isPseudoLocalesEnabled = true buildConfigField("long", "BUILD_ID", "${Random.nextLong()}L") @@ -41,14 +41,15 @@ android { } if (project.hasProperty("signAsDebug")) { - applicationIdSuffix = ".debug" - resValue("string", "app_name", "ReVanced Manager Debug") + applicationIdSuffix = ".debug_signed" + resValue("string", "app_name", "ReVanced Manager (Debug signed)") signingConfig = signingConfigs.getByName("debug") isPseudoLocalesEnabled = true } buildConfigField("long", "BUILD_ID", "0L") + signingConfig = signingConfigs.getByName("debug") } }