Skip to content

Commit

Permalink
Merge pull request #40 from t-regbs/v2.0.6
Browse files Browse the repository at this point in the history
V2.0.6
  • Loading branch information
t-regbs authored Aug 23, 2022
2 parents a938578 + a242b3c commit 151aedb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ plugins {
android {
defaultConfig {
applicationId = "com.timilehinaregbesola.mathalarm"
versionCode = 15
versionName = "2.0.5"
versionCode = 16
versionName = "2.0.6"
minSdk = Integer.parseInt(libs.versions.android.min.sdk.get())
targetSdk = Integer.parseInt(libs.versions.android.target.sdk.get())
compileSdk = Integer.parseInt(libs.versions.android.compile.sdk.get())
Expand Down
Binary file modified app/release/app-release.aab
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ class AlarmSettingsViewModel @Inject constructor(
} else {
_tone.value = alarm.alarmTone
}
_alarmTitle.value = TextFieldValue(alarm.title)
val formattedTitle = alarm.title.replace('+', ' ')
_alarmTitle.value = TextFieldValue(formattedTitle)
_isOn.value = alarm.isOn
_isSaved.value = alarm.isSaved
}
Expand Down

0 comments on commit 151aedb

Please sign in to comment.