3.0.0.1-dev-g
This commit is contained in:
parent
56a1eb6121
commit
3fe1d2a0d1
2 changed files with 2 additions and 2 deletions
|
@ -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() + '"'
|
||||
|
|
|
@ -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"))
|
||||
}
|
Loading…
Reference in a new issue