From cff6b86997b6ce7744422b69ea9c6f81747b3a7a Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Wed, 16 Oct 2024 01:22:57 +0100 Subject: [PATCH] App debug builds can now be installed side-by-side with non-debug --- android/app/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index d461e41..c5a7cdd 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -81,6 +81,10 @@ android { release { signingConfig signingConfigs.release } + debug { + applicationIdSuffix = ".debug" + versionNameSuffix = "-debug" + } } }