From 2f9ab5f8a631efefb36349df5e25cfe657284663 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Sun, 11 Feb 2024 16:40:22 +0200 Subject: [PATCH] [android] Change app names for debug and beta versions Versions are almost indistinguishable in the launcher. Signed-off-by: Roman Tsisyk --- android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 8e127df0d3..7d247c35f8 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -259,7 +259,7 @@ android { zipAlignEnabled true signingConfig signingConfigs.debug resValue 'string', 'app_id', android.defaultConfig.applicationId + applicationIdSuffix - resValue 'string', 'app_name', project.ext.appName + ' ' + '(Debug)' + resValue 'string', 'app_name', 'Debug Organic Maps' // Do not generate separate debug symbols for debug apps, because we don't distribute them. ndk.debugSymbolLevel = 'none' @@ -302,7 +302,7 @@ android { proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' matchingFallbacks = ['debug', 'release'] resValue 'string', 'app_id', android.defaultConfig.applicationId + applicationIdSuffix - resValue 'string', 'app_name', project.ext.appName + ' ' + '(Beta)' + resValue 'string', 'app_name', 'Beta Organic Maps' // Full size symbols are too big for Google, 217mb aab vs 95mb. ndk.debugSymbolLevel = 'symbol_table'