From cff6b86997b6ce7744422b69ea9c6f81747b3a7a Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Wed, 16 Oct 2024 01:22:57 +0100 Subject: [PATCH 1/2] 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 d461e410..c5a7cddc 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" + } } } From 25233f325939847d9fece933fc71012f62e036fe Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Wed, 16 Oct 2024 01:30:18 +0100 Subject: [PATCH 2/2] App is now called debug so its easier to spot --- android/app/src/debug/res/values/string.xml | 4 ++++ android/app/src/main/AndroidManifest.xml | 2 +- android/app/src/main/res/values/string.xml | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 android/app/src/debug/res/values/string.xml create mode 100644 android/app/src/main/res/values/string.xml diff --git a/android/app/src/debug/res/values/string.xml b/android/app/src/debug/res/values/string.xml new file mode 100644 index 00000000..a01a60af --- /dev/null +++ b/android/app/src/debug/res/values/string.xml @@ -0,0 +1,4 @@ + + + Obtainium Debug + \ No newline at end of file diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 935509b2..6ce6efa4 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -2,7 +2,7 @@ xmlns:tools="http://schemas.android.com/tools" package="dev.imranr.obtainium"> + + Obtainium + \ No newline at end of file