From bb1e87c8049daa6be7f6c14b096bbd6f5cbc69c7 Mon Sep 17 00:00:00 2001 From: Bix Date: Sat, 12 Jul 2025 19:47:15 +0200 Subject: [PATCH] Added "Legacy " to App name on android. Signed-off-by: Bix --- src/android/app/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index 8fc4a82088..841ef7d9f0 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -103,7 +103,7 @@ android { signingConfigs.getByName("default") } - resValue("string", "app_name_suffixed", "Eden") + resValue("string", "app_name_suffixed", "Eden Legacy") isMinifyEnabled = true isDebuggable = false proguardFiles( @@ -116,7 +116,7 @@ android { // Attaches 'debug' suffix to version and package name, allowing installation alongside the release build. register("relWithDebInfo") { isDefault = true - resValue("string", "app_name_suffixed", "Eden Debug Release") + resValue("string", "app_name_suffixed", "Eden Legacy Debug Release") signingConfig = signingConfigs.getByName("default") isDebuggable = true proguardFiles( @@ -132,7 +132,7 @@ android { // Attaches 'debug' suffix to version and package name, allowing installation alongside the release build. debug { signingConfig = signingConfigs.getByName("default") - resValue("string", "app_name_suffixed", "Eden Debug") + resValue("string", "app_name_suffixed", "Eden Legacy Debug") isDebuggable = true isJniDebuggable = true versionNameSuffix = "-debug"