From 09ff33ab84df8f162571a57d9e7b06b12d68998e Mon Sep 17 00:00:00 2001 From: fatih ergin Date: Mon, 21 Aug 2023 23:00:28 +0300 Subject: [PATCH] remove misused and unnecessary media player method setVolume. it just break alarm volume level in a wrong way. --- .../com/simplemobiletools/clock/activities/ReminderActivity.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/clock/activities/ReminderActivity.kt b/app/src/main/kotlin/com/simplemobiletools/clock/activities/ReminderActivity.kt index f66a738e..df6bee02 100644 --- a/app/src/main/kotlin/com/simplemobiletools/clock/activities/ReminderActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/clock/activities/ReminderActivity.kt @@ -194,7 +194,6 @@ class ReminderActivity : SimpleActivity() { mediaPlayer = MediaPlayer().apply { setAudioStreamType(AudioManager.STREAM_ALARM) setDataSource(this@ReminderActivity, Uri.parse(soundUri)) - setVolume(lastVolumeValue, lastVolumeValue) isLooping = true prepare() start()