Minseo  Byun
Minseo Byun

Reputation: 51

How can I read push notification from other apps?

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.

Upvotes: 4

Views: 8526

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006564

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.

Upvotes: 8

Related Questions