Skip to content

Commit 1ab74ac

Browse files
committed
feat: Use "Debug" and "Debug signed" for build names respectively
1 parent 28aad87 commit 1ab74ac

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
buildTypes {
2828
debug {
2929
applicationIdSuffix = ".debug"
30-
resValue("string", "app_name", "ReVanced Manager (dev)")
30+
resValue("string", "app_name", "ReVanced Manager (Debug)")
3131
isPseudoLocalesEnabled = true
3232

3333
buildConfigField("long", "BUILD_ID", "${Random.nextLong()}L")
@@ -41,14 +41,15 @@ android {
4141
}
4242

4343
if (project.hasProperty("signAsDebug")) {
44-
applicationIdSuffix = ".debug"
45-
resValue("string", "app_name", "ReVanced Manager Debug")
44+
applicationIdSuffix = ".debug_signed"
45+
resValue("string", "app_name", "ReVanced Manager (Debug signed)")
4646
signingConfig = signingConfigs.getByName("debug")
4747

4848
isPseudoLocalesEnabled = true
4949
}
5050

5151
buildConfigField("long", "BUILD_ID", "0L")
52+
signingConfig = signingConfigs.getByName("debug")
5253
}
5354
}
5455

0 commit comments

Comments
 (0)