Back
On Android, users have the option to make some notifications silent. This means they make no sound and show up at the bottom of the notification tray instead of at the top. I want an option to get the Core 2 to ignore silent notifications and not display them please.
Hi, that makes sense. I am not sure yet if it is technically possible, but I can see how that should be the default behavior for silent notifications
I believe IMPORTANCE_LOW corresponds to silent notifications: https://developer.android.com/reference/android/app/NotificationManager#IMPORTANCE_LOW A NotificationListenerService (which I assume the app is using) can get the Notification from the StatusBarNotification it receives, get the channel ID for that notification, and then check the importance for that NotificationChannel to find out if the notification is silent or not.
Thank you! I passed this information on to our Android engineers. That should help a lot and making this possible.