UNPKG

phonegap-plugin-push

Version:
32 lines (28 loc) 460 B
## Quick Example ```javascript var push = PushNotification.init({ android: { senderID: "12345679" }, ios: { alert: "true", badge: "true", sound: "true" }, windows: {} }); push.on('registration', function(data) { // data.registrationId }); push.on('notification', function(data) { // data.message, // data.title, // data.count, // data.sound, // data.image, // data.additionalData }); push.on('error', function(e) { // e.message }); ```