Please note that on the Android foreground, push open will not be shown |
document.addEventListener('deviceready', this.onDeviceReady, false); |
onDeviceReady: function() { onResume(); document.addEventListener("resume", onResume, false); app.receivedEvent('deviceready'); console.log('Received Event: ' + id); }, |
When the application resumes, the following code will check if it resumed due to a push notification. If so, feel free to extract the relevant custom field from the payload.
function onResume() { MappPlugin.getLastPushPayload(function (json) { var jsonString = JSON.stringify(json); if (jsonString && jsonString.length > 2) { alert("Last Push Payload: " + jsonString); } }); } |
In the message creation wizard, insert the deep link address.