mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-05-25 02:52:11 +02:00
feat: Use "Debug" and "Debug signed" for build names respectively
This commit is contained in:
parent
28aad879ba
commit
1ab74acf1d
@ -27,7 +27,7 @@ android {
|
|||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
resValue("string", "app_name", "ReVanced Manager (dev)")
|
resValue("string", "app_name", "ReVanced Manager (Debug)")
|
||||||
isPseudoLocalesEnabled = true
|
isPseudoLocalesEnabled = true
|
||||||
|
|
||||||
buildConfigField("long", "BUILD_ID", "${Random.nextLong()}L")
|
buildConfigField("long", "BUILD_ID", "${Random.nextLong()}L")
|
||||||
@ -41,14 +41,15 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (project.hasProperty("signAsDebug")) {
|
if (project.hasProperty("signAsDebug")) {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug_signed"
|
||||||
resValue("string", "app_name", "ReVanced Manager Debug")
|
resValue("string", "app_name", "ReVanced Manager (Debug signed)")
|
||||||
signingConfig = signingConfigs.getByName("debug")
|
signingConfig = signingConfigs.getByName("debug")
|
||||||
|
|
||||||
isPseudoLocalesEnabled = true
|
isPseudoLocalesEnabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
buildConfigField("long", "BUILD_ID", "0L")
|
buildConfigField("long", "BUILD_ID", "0L")
|
||||||
|
signingConfig = signingConfigs.getByName("debug")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user