Skip to content

Commit

Permalink
fix: Remove NotificationDot for some notifications RC (#2863)
Browse files Browse the repository at this point in the history
Co-authored-by: boris <[email protected]>
Co-authored-by: Boris Safonov <[email protected]>
Co-authored-by: Yamil Medina <[email protected]>
  • Loading branch information
4 people authored Apr 9, 2024
1 parent 2a11540 commit c588bc0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ class NotificationChannelsManager @Inject constructor(
.setVibrationEnabled(false)
.setImportance(NotificationManagerCompat.IMPORTANCE_DEFAULT)
.setSound(null, null)
.setShowBadge(false)
.build()

notificationManagerCompat.createNotificationChannel(notificationChannel)
Expand Down Expand Up @@ -165,6 +166,7 @@ class NotificationChannelsManager @Inject constructor(
val notificationChannel = NotificationChannelCompat
.Builder(channelId, NotificationManagerCompat.IMPORTANCE_HIGH)
.setName(channelName)
.setShowBadge(false)
.build()

notificationManagerCompat.createNotificationChannel(notificationChannel)
Expand Down

0 comments on commit c588bc0

Please sign in to comment.