feat: Use "Debug" and "Debug signed" for build names respectively

This commit is contained in:
oSumAtrIX 2025-04-30 11:08:16 +02:00
parent 28aad879ba
commit 1ab74acf1d
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -27,7 +27,7 @@ android {
buildTypes {
debug {
applicationIdSuffix = ".debug"
resValue("string", "app_name", "ReVanced Manager (dev)")
resValue("string", "app_name", "ReVanced Manager (Debug)")
isPseudoLocalesEnabled = true
buildConfigField("long", "BUILD_ID", "${Random.nextLong()}L")
@ -41,14 +41,15 @@ android {
}
if (project.hasProperty("signAsDebug")) {
applicationIdSuffix = ".debug"
resValue("string", "app_name", "ReVanced Manager Debug")
applicationIdSuffix = ".debug_signed"
resValue("string", "app_name", "ReVanced Manager (Debug signed)")
signingConfig = signingConfigs.getByName("debug")
isPseudoLocalesEnabled = true
}
buildConfigField("long", "BUILD_ID", "0L")
signingConfig = signingConfigs.getByName("debug")
}
}