[android] Rename Beta builds to Test

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-05-22 13:01:55 +07:00
parent 2a4111235e
commit 113c8fab28

View File

@@ -255,7 +255,7 @@ android {
jniDebuggable true // Enable jni debug build jniDebuggable true // Enable jni debug build
zipAlignEnabled true zipAlignEnabled true
signingConfig signingConfigs.debug 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. // Do not generate separate debug symbols for debug apps, because we don't distribute them.
ndk.debugSymbolLevel = 'none' ndk.debugSymbolLevel = 'none'
} }
@@ -272,17 +272,18 @@ android {
ndk.debugSymbolLevel = 'symbol_table' ndk.debugSymbolLevel = 'symbol_table'
} }
// TODO(@pastk): rename to "test" everywhere in code
beta { beta {
applicationIdSuffix '.beta' applicationIdSuffix '.test'
versionNameSuffix '-beta' versionNameSuffix '-test'
signingConfig signingConfigs.release signingConfig signingConfigs.release
minifyEnabled true minifyEnabled true
shrinkResources true shrinkResources true
// Includes the default ProGuard rules files that are packaged with the Android Gradle plugin. // 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. // To learn more, go to the documentation section about R8 configuration files.
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
matchingFallbacks = ['debug', 'release'] matchingFallbacks = ['release'] // use dependencies of "release" build type
resValue 'string', 'app_name', 'Beta CoMaps' resValue 'string', 'app_name', 'CoMaps Test'
// Full size symbols are too big for Google, 217mb aab vs 95mb. // Full size symbols are too big for Google, 217mb aab vs 95mb.
ndk.debugSymbolLevel = 'symbol_table' ndk.debugSymbolLevel = 'symbol_table'
} }