Add a suffix to the application id on debug builds

This commit is contained in:
Syer10
2022-03-04 23:12:59 -05:00
parent e57d468e67
commit 40c6e52c9c

View File

@@ -94,6 +94,9 @@ android {
buildConfigField("int", "PREVIEW_BUILD", project.properties["preview"]?.toString()?.trim('"') ?: 0.toString())
}
buildTypes {
getByName("debug") {
applicationIdSuffix = ".debug"
}
getByName("release") {
isMinifyEnabled = false
}