From db1e20e296c64491b1c09b85545a4dcca187cdd3 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 22 May 2022 12:10:03 +0200 Subject: [PATCH] change the default reminder audio stream from Alarm to Notification --- .../kotlin/com/simplemobiletools/calendar/pro/helpers/Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/Config.kt index 977aac1c7..d09beff4d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/pro/helpers/Config.kt @@ -115,7 +115,7 @@ class Config(context: Context) : BaseConfig(context) { set(lastUsedLocalEventTypeId) = prefs.edit().putLong(LAST_USED_LOCAL_EVENT_TYPE_ID, lastUsedLocalEventTypeId).apply() var reminderAudioStream: Int - get() = prefs.getInt(REMINDER_AUDIO_STREAM, AudioManager.STREAM_ALARM) + get() = prefs.getInt(REMINDER_AUDIO_STREAM, AudioManager.STREAM_NOTIFICATION) set(reminderAudioStream) = prefs.edit().putInt(REMINDER_AUDIO_STREAM, reminderAudioStream).apply() var replaceDescription: Boolean