Stop alarm when pressing stop on notification

This commit is contained in:
Brandon Presley 2022-07-19 14:26:11 +12:00
parent c965064e57
commit 0cb8d7b962
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import android.util.Log
class StopTimer : Service() {
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
applicationContext.stopService(Intent(applicationContext, TimerService::class.java))
applicationContext.stopService(Intent(applicationContext, AlarmService::class.java))
return super.onStartCommand(intent, flags, startId)
}