Rename notification channels

Closes #44
This commit is contained in:
Brandon Presley 2022-09-24 15:40:37 +12:00
parent 24c8eb08b9
commit 0f571ac3ea
1 changed files with 2 additions and 2 deletions

View File

@ -157,8 +157,8 @@ class TimerService() : Service() {
}
companion object {
private const val CHANNEL_ID_PENDING = "MassiveTimer"
private const val CHANNEL_ID_DONE = "MassiveDone"
private const val CHANNEL_ID_PENDING = "Timer"
private const val CHANNEL_ID_DONE = "Alarm"
private const val NOTIFICATION_ID_PENDING = 1
private const val NOTIFICATION_ID_DONE = 2
}