feat(build): add debug build type with applicationId and version name suffixes

This commit is contained in:
2026-05-22 21:16:43 +02:00
parent bbec9c1e06
commit 4c15474ad9

View File

@@ -23,6 +23,10 @@ android {
} }
buildTypes { buildTypes {
debug {
applicationIdSuffix = ".debug"
versionNameSuffix = "-debug"
}
release { release {
// Enables code-related app optimization. // Enables code-related app optimization.
isMinifyEnabled = true isMinifyEnabled = true