From 18d6d93ccf5393d61bd341a57ffaf0d2c61c07bc Mon Sep 17 00:00:00 2001 From: Briar <205427297+icybriarr@users.noreply.github.com> Date: Tue, 1 Apr 2025 18:43:13 +0200 Subject: [PATCH] android: Change app name to eden --- 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 0a8b469daf..e115d37477 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", "yuzu") + resValue("string", "app_name_suffixed", "eden") 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", "yuzu Debug Release") + resValue("string", "app_name_suffixed", "eden Debug Release") signingConfig = signingConfigs.getByName("default") isMinifyEnabled = true isDebuggable = true @@ -133,7 +133,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", "yuzu Debug") + resValue("string", "app_name_suffixed", "eden Debug") isDebuggable = true isJniDebuggable = true versionNameSuffix = "-debug"