From 0f43870e6cdd6154389f1bc8fccaf87866fa2efd Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 19 Jun 2026 14:40:50 +0100 Subject: [PATCH] chore(android): give debug build a .debug app id applicationIdSuffix=".debug" + versionNameSuffix so a debug/test build installs alongside the release app instead of failing on signature mismatch. Co-Authored-By: Claude Opus 4.8 (1M context) --- Android/app/build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Android/app/build.gradle.kts b/Android/app/build.gradle.kts index 01a4c393..0c660ce2 100644 --- a/Android/app/build.gradle.kts +++ b/Android/app/build.gradle.kts @@ -20,6 +20,12 @@ android { } buildTypes { + debug { + // Separate app ID so a debug/test build installs alongside the + // release app instead of colliding on signature. + applicationIdSuffix = ".debug" + versionNameSuffix = "-debug" + } release { isMinifyEnabled = true isShrinkResources = true