NotificationListenerService plugin for Cordova/Phonegap
Go to file
Javier Rengel Jiménez a785d7e184
Merge pull request #8 from phalix/master
Android Manifest, Remove of unused Class. Issue #2,#4,and #5
2018-05-21 21:45:24 +02:00
src/android Remove dsstore 2018-05-21 21:39:45 +02:00
www First commit 2015-09-13 12:34:59 +01:00
CHANGES.txt First commit 2015-09-13 12:34:59 +01:00
LICENSE.txt First commit 2015-09-13 12:34:59 +01:00
README.md Parser link 2015-09-13 12:36:18 +01:00
package.json First commit 2015-09-13 12:34:59 +01:00
plugin.xml Bugfix 2018-05-21 01:53:52 +02:00
settings.jpg Reduce image 2015-09-13 12:40:34 +01:00

README.md

NotificationListenerService plugin for Cordova

This is an implementation of the NotificationListenerService in Android for Cordova.

A service that receives calls from the system when new notifications are posted or removed, or their ranking changed.

Note: This plugin doesn't work for IOS or Windows Phone, feel free to create a pull request if you want to add that functionality to this project.

How to install

cordova plugin add https://github.com/coconauts/NotificationListener-cordova

Enable notification listener service

This service requires an special permission that must be enabled from settings on Android (Settings > Notifications > Notification access)

Note: The app requires the following permission in your Manifest file on Android, which will be added automatically:

android.permission.BIND_NOTIFICATION_LISTENER_SERVICE

How to use

On Cordova initialization, add the callback for your notification-listener. Then everytime you get a notification in your phone that callback in JS will be triggered with the notification data.

var app = {
    initialize: function() {
       console.log("Initializing app");
       this.bindEvents();
    },
    bindEvents: function() {
        console.log("Binding events");
        document.addEventListener('deviceready', this.onDeviceReady, false);
    },
    onDeviceReady: function() {
       console.log("Device ready");

       notificationListener.listen(function(n){
         console.log("Received notification " + JSON.stringify(n) );
       }, function(e){
         console.log("Notification Error " + e);
       });
    }
};
app.initialize();

For a full example, please see our WatchDuino2 repository

Sample output

Received notification
{
  "title":"Chuck Norris",
  "package":"com.google.android.talk",
  "text":"Hello world",
  "textLines":""
}

Notification response format

The notification response received by Javascript is a simplified object from the StatusBarNotification class in Android.

Feel free to update the notification parser inside this plugin if needed.