3.0.0.1-dev-g

This commit is contained in:
Milos Kozak 2022-03-17 22:16:53 +01:00
parent 56a1eb6121
commit 3fe1d2a0d1
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ android {
defaultConfig {
multiDexEnabled true
versionCode 1500
version "3.0.0.1-dev-f"
version "3.0.0.1-dev-g"
buildConfigField "String", "VERSION", '"' + version + '"'
buildConfigField "String", "BUILDVERSION", '"' + generateGitBuild() + '-' + generateDate() + '"'
buildConfigField "String", "REMOTE", '"' + generateGitRemote() + '"'

View file

@ -43,7 +43,7 @@ class ComboErrorUtil @Inject constructor(
private val isErrorPresent: Boolean
get() = errorMap.isNotEmpty()
val errorCount: Int
get() = if (sp.contains(R.string.key_combo_error_count)) sp.getInt(R.string.key_combo_error_count, -1) else -1
get() = sp.getInt(R.string.key_combo_error_count, -1)
val displayType: DisplayType
get() = DisplayType.valueOf(sp.getString(R.string.key_show_comm_error_count, "ON_ERROR"))
}