From f46947e9e9378b12e49e8fb4dbc435abe9905d01 Mon Sep 17 00:00:00 2001
From: JonOfUs <jonofus@flueren.eu>
Date: Fri, 7 Mar 2025 16:51:48 +0100
Subject: [PATCH] Different app ID for debug build so that stable and debug can
 be installed next to each other

---
 android/app/build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/android/app/build.gradle b/android/app/build.gradle
index a0bc5a0..71c8886 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -49,6 +49,9 @@ plugins {
        release {
            signingConfig signingConfigs.release
        }
+        debug {
+            applicationIdSuffix = ".debug"
+        }
    }
 
 }
-- 
GitLab