From c588bc0e2655630a306637907abe22c672f6f25b Mon Sep 17 00:00:00 2001 From: AndroidBob Date: Tue, 9 Apr 2024 09:45:15 +0200 Subject: [PATCH] fix: Remove NotificationDot for some notifications RC (#2863) Co-authored-by: boris Co-authored-by: Boris Safonov Co-authored-by: Yamil Medina --- .../wire/android/notification/NotificationChannelsManager.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/kotlin/com/wire/android/notification/NotificationChannelsManager.kt b/app/src/main/kotlin/com/wire/android/notification/NotificationChannelsManager.kt index 7451d1bdc78..751cc4581bd 100644 --- a/app/src/main/kotlin/com/wire/android/notification/NotificationChannelsManager.kt +++ b/app/src/main/kotlin/com/wire/android/notification/NotificationChannelsManager.kt @@ -130,6 +130,7 @@ class NotificationChannelsManager @Inject constructor( .setVibrationEnabled(false) .setImportance(NotificationManagerCompat.IMPORTANCE_DEFAULT) .setSound(null, null) + .setShowBadge(false) .build() notificationManagerCompat.createNotificationChannel(notificationChannel) @@ -165,6 +166,7 @@ class NotificationChannelsManager @Inject constructor( val notificationChannel = NotificationChannelCompat .Builder(channelId, NotificationManagerCompat.IMPORTANCE_HIGH) .setName(channelName) + .setShowBadge(false) .build() notificationManagerCompat.createNotificationChannel(notificationChannel)