Have you heard of notification channels and what it does basically?
Starting in Android 8.0 (API level 26), all notifications must be assigned to a channel. For each channel, you can set the visual and auditory behavior that is applied to all notifications in that channel.
- We also have the ability to group notification channels into separate groups. This is so that we are able to have the same notification channels across multiple application modes.
- Once our notifications are in these channels, we no longer have input into their functionality — so it is up to the user to manage these channels.
Read more here
Comments
Post a Comment