wip: buildTypes

This commit is contained in:
sweetbread
2024-03-25 23:28:48 +03:00
parent d4bb804f24
commit c09947865d
3 changed files with 12 additions and 1 deletions
+7
View File
@@ -39,6 +39,13 @@ android {
applicationIdSuffix = ".debug"
versionNameSuffix =
"-debug+${LocalDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)}"
resValue("string", "app_name", "app_name_dev")
}
create("beta") {
versionNameSuffix =
"-beta+${LocalDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)}"
resValue("string", "app_name", "@string/app_name_beta")
signingConfig = signingConfigs.getByName("debug")
}
}
compileOptions {