From 113c8fab281264a82052dd7dbb60da7594567639 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Thu, 22 May 2025 13:01:55 +0700 Subject: [PATCH] [android] Rename Beta builds to Test Signed-off-by: Konstantin Pastbin --- android/app/build.gradle | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 1268e491b..7311ac492 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -255,7 +255,7 @@ android { jniDebuggable true // Enable jni debug build zipAlignEnabled true signingConfig signingConfigs.debug - resValue 'string', 'app_name', 'Debug CoMaps' + resValue 'string', 'app_name', 'CoMaps Debug' // Do not generate separate debug symbols for debug apps, because we don't distribute them. ndk.debugSymbolLevel = 'none' } @@ -272,17 +272,18 @@ android { ndk.debugSymbolLevel = 'symbol_table' } + // TODO(@pastk): rename to "test" everywhere in code beta { - applicationIdSuffix '.beta' - versionNameSuffix '-beta' + applicationIdSuffix '.test' + versionNameSuffix '-test' signingConfig signingConfigs.release minifyEnabled true shrinkResources true // Includes the default ProGuard rules files that are packaged with the Android Gradle plugin. // To learn more, go to the documentation section about R8 configuration files. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - matchingFallbacks = ['debug', 'release'] - resValue 'string', 'app_name', 'Beta CoMaps' + matchingFallbacks = ['release'] // use dependencies of "release" build type + resValue 'string', 'app_name', 'CoMaps Test' // Full size symbols are too big for Google, 217mb aab vs 95mb. ndk.debugSymbolLevel = 'symbol_table' }