Skip to content

Commit

Permalink
feat: change appID of debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Sep 20, 2023
1 parent c4b9bb1 commit bf53e6d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ android {
}

buildTypes {
debug {
applicationIdSuffix = ".debug"
resValue("string", "app_name", "ReVanced Manager Debug")
}

release {
if (!project.hasProperty("noProguard")) {
isMinifyEnabled = true
Expand All @@ -33,6 +38,8 @@ android {
}

if (project.hasProperty("signAsDebug")) {
applicationIdSuffix = ".debug"
resValue("string", "app_name", "ReVanced Manager Debug")
signingConfig = signingConfigs.getByName("debug")
}
}
Expand Down

0 comments on commit bf53e6d

Please sign in to comment.