From 4c15474ad962af85629f22661281299bba1a470c Mon Sep 17 00:00:00 2001 From: Barnabas Balogh Date: Fri, 22 May 2026 21:16:43 +0200 Subject: [PATCH] feat(build): add debug build type with applicationId and version name suffixes --- app/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 94d9636b..99adfcd8 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -23,6 +23,10 @@ android { } buildTypes { + debug { + applicationIdSuffix = ".debug" + versionNameSuffix = "-debug" + } release { // Enables code-related app optimization. isMinifyEnabled = true