Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Current »

Android forground

Please note that on the Android foreground, push open will not be shown

Step 1 - Listen to the "deviceready" event (iOS only)

add event listener
document.addEventListener('deviceready', this.onDeviceReady, false);

Step2 - Listen to the resume event and activate it explicitly for the first time (iOS only)

add event listener
onDeviceReady: function() {
        onResume();
        document.addEventListener("resume", onResume, false);
        app.receivedEvent('deviceready');
        console.log('Received Event: ' + id);
    },

Step 3 - Implement the onResume function (iOS only)

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.

add event listener
function onResume() {
	
	MappPlugin.getLastPushPayload(function (json) {
	
					var jsonString = JSON.stringify(json);
									
					if (jsonString && jsonString.length > 2) {
									
								alert("Last Push Payload: " + jsonString); 
					}
	});
}





  • No labels