Disable sound on complete notification for timers

Closes #55
This commit is contained in:
Brandon Presley 2022-09-25 23:53:15 +13:00
parent 5e1a6c42cd
commit facceae2a8
1 changed files with 1 additions and 0 deletions

View File

@ -152,6 +152,7 @@ class TimerService() : Service() {
notificationManager.createNotificationChannel(alarmsChannel)
val timersChannel =
NotificationChannel(CHANNEL_ID_PENDING, CHANNEL_ID_PENDING, IMPORTANCE_LOW)
timersChannel.setSound(null, null)
timersChannel.description = "Progress on rest timers."
notificationManager.createNotificationChannel(timersChannel)
return notificationManager