I'm trying to write an app that will permanently listen to any incoming notification and then process them. I'm struggling at the first hurdle of making a notification listener that can run permanently even when the app is in the background. Any advice on where to start would be much appreciated?
Thanks
You should be using a service to achieve this.
A service that receives calls from the system when new notifications are posted or removed or their ranking changed.
You should have an android service class which implements NotificationListener()
Another required thing to do is to have it in your manifest file:
Hope it helps!
Refer for more details: https://developer.android.com/reference/android/service/notification/NotificationListenerService