From 9011ef2f5a505d1f3866b270a566618615b34611 Mon Sep 17 00:00:00 2001 From: ahusan Date: Thu, 28 May 2026 14:53:45 +0500 Subject: [PATCH] debug builds: separate applicationId so they coexist with release Adds applicationIdSuffix=.debug and versionNameSuffix=-debug so a side-loaded debug build can be installed alongside the Play/release build without conflicting on package id. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 015c8f4..1666dff 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -27,6 +27,10 @@ android { } buildTypes { + debug { + applicationIdSuffix = ".debug" + versionNameSuffix = "-debug" + } release { signingConfig = signingConfigs.getByName("release") isMinifyEnabled = false