remove misused and unnecessary media player method setVolume.

it just break alarm volume level in a wrong way.
This commit is contained in:
fatih ergin 2023-08-21 23:00:28 +03:00
parent c2d1a08d1d
commit 09ff33ab84

View File

@ -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()