We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87bc30e commit 48cae7eCopy full SHA for 48cae7e
2 files changed
mobile/build.gradle
@@ -19,7 +19,7 @@ android {
19
applicationId "es.hegocre.scorecounter"
20
minSdk 24
21
targetSdk 36
22
- versionCode 361500000
+ versionCode 361500001
23
versionName "1.5.0"
24
resourceConfigurations += ['ca', 'es', 'en']
25
}
mobile/src/main/java/es/hegocre/scorecounter/ScoreViewModel.kt
@@ -84,7 +84,7 @@ class ScoreViewModel(application: Application) : AndroidViewModel(application) {
84
85
fun reset(index: Int) {
86
if (index < _scores.size) {
87
- _scores[index] = _scores[index].copy(score = 0)
+ _scores[index] = _scores[index].copy(score = startingScore)
88
viewModelScope.launch {
89
saveScore()
90
0 commit comments