Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I read push notification from other apps?

Tags:

android

I want to make an app which can read all of the push notification the device get and sort them. And I want to know if I can access to the other application's push notification content.

like image 284
Minseo Byun Avatar asked Sep 08 '25 02:09

Minseo Byun


1 Answers

If by "push notification", you mean Notification objects populating the status bar, you can create a NotificationListenerService for this. Users may not be interested in giving your app the rights to monitor their notifications, though, which is why the user must manually enable this for your app.

If by "push notification" you mean something like Google Cloud Messaging, you cannot intercept push messages destined for other apps, for obvious privacy and security reasons.

like image 159
CommonsWare Avatar answered Sep 10 '25 03:09

CommonsWare