From df8f32b7ad8ef34052de499efe03d9f9f70cdb52 Mon Sep 17 00:00:00 2001 From: Bix Date: Thu, 24 Jul 2025 14:02:02 +0200 Subject: [PATCH] Set app name to "Eden Optimised" for Optimised build. (#101) This commit updates the 'genshinSpoof' build flavour to display "Eden Optimised" as the app name by setting 'resValue("string", "app_name_suffixed", "Eden Optimised")'. This helps differentiate the optimised spoofed build from other versions. Authored-by: Bix Signed-off-by: Bix Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/101 Co-authored-by: Bix Co-committed-by: Bix --- src/android/app/build.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index 8fc4a82088..89d819d900 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -60,7 +60,7 @@ android { // TODO If this is ever modified, change application_id in strings.xml applicationId = "dev.eden.eden_emulator" minSdk = 30 - targetSdk = 35 + targetSdk = 36 versionName = getGitVersion() versionCode = autoVersion @@ -150,7 +150,8 @@ android { create("genshinSpoof") { dimension = "version" - applicationId = "com.miHoYo.Yuanshen" + resValue("string", "app_name_suffixed", "Eden Optimised") + applicationId = "com.miHoYo.Yuanshen" } } }