Android Question Update Notifications

Bucky108

Member
Licensed User
Longtime User
Is there a way to turn app notifications on or off?

For example, turn notifications on or off for Facebook, email, Instagram, etc.
 

Bucky108

Member
Licensed User
Longtime User
Thanks MicroDrie - good examples of building notifications but I'm looking to update notifications for existing apps.
 
Upvote 0

wes58

Active Member
Licensed User
Longtime User
Thanks MicroDrie - good examples of building notifications but I'm looking to update notifications for existing apps.
Notifications are Android feature, so you should, for example, google "android notification development". And you will find:
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. Then, users can change these settings and decide which notification channels from your app should be intrusive or visible at all.
After you create a notification channel, you cannot change the notification behaviorsthe user has complete control at that point. Though you can still change a channel's name and description.
 
Upvote 0
Top