Skip to content

Commit 8fc73d0

Browse files
Use ".debug" suffix and set app name for debug builds
The `build.gradle.kts` file has been updated for the `debug` build type. The `applicationIdSuffix` is changed from `.dev` to `.debug` to more accurately reflect the build type. Additionally, a new `resValue` is added to set the `app_name` to "Multi Launcher Debug" for these builds, making them easier to identify when installed.
1 parent a2ba4f6 commit 8fc73d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,12 @@ android {
9090
isDebuggable = true
9191
isMinifyEnabled = false
9292
isShrinkResources = false
93-
applicationIdSuffix = ".dev"
93+
applicationIdSuffix = ".debug"
9494

9595
signingConfig = signingConfigs["release"]
9696

9797
resValue("string", "app_version", baseVersionName)
98+
resValue("string", "app_name", "Multi Launcher Debug")
9899
resValue("string", "empty", "")
99100
}
100101

0 commit comments

Comments
 (0)