fix(notification): reduce importance level to disable heads-up notif

This commit is contained in:
Nishant Mishra
2025-10-16 00:18:21 +05:30
parent dfa6a2f1c4
commit dc4c498371

View File

@@ -15,7 +15,7 @@ class TomatoApplication : Application() {
val notificationChannel = NotificationChannel(
"timer",
getString(R.string.timer_progress),
NotificationManager.IMPORTANCE_HIGH
NotificationManager.IMPORTANCE_DEFAULT
)
container.notificationManager.createNotificationChannel(notificationChannel)