With the xtremepush module for Cordova you can add xtremepush to both iOS and Android apps built with Cordova or PhoneGap or Ionic.
Xtremepush supports push notifications for iOS devices via Apples's Push Notification Service (APNs for short). And push notifications for Android devices via Google’s GCM/FCM (Google/Firebase Cloud Messaging for Android) service. This page contains PhoneGap specific instructions but you will need to connect your iOS and Android app to the platform separately.
N.B. To integrate successfully you will need to have your xtremepush App Key, APNS certs for iOS and, Google project number and GCM/FCM API key for Android. These are used to connect your app to the platform and the Apple and Google push services. You will find links to documentation on connecting to the platform below:
- Connecting your app to the platform
- Getting push certs or API keys
Full Cordova integration guides are given for iOS and Android below.
- In a terminal navigate to your project directory
- From a terminal navigate to your application directory, and add the plugin with the following command:
cordova plugin add https://github.com/xtremepush/XtremePush-Phonegap
- Now edit your index.js file to register with the xtremepush server on a deviceready event, taking care to switch "APP_KEY" and "GCM_PROJECT_NUMBER" to actual values.
var app = {
// Application Constructor
initialize: function() {
this.bindEvents();
},
// Bind Event Listeners
//
// Bind any events that are required on startup. Common events are:
// 'load', 'deviceready', 'offline', and 'online'.
bindEvents: function() {
document.addEventListener('deviceready', this.onDeviceReady, false);
},
// deviceready Event Handler
//
// The scope of 'this' is the event. In order to call the 'receivedEvent'
// function, we must explicitly call 'app.receivedEvent(...);'
onDeviceReady: function() {
registerXtremePush();
}
};
function registerXtremePush(){
XtremePush.register({
appKey: "APP_KEY",
debugLogsEnabled: true,
pushOpenCallback: "onPushOpened",
inappMessagingEnabled: true,
ios: {
pushPermissionsRequest: true,
locationsEnabled: true,
locationsPermissionsRequest: true
},
android: {
gcmProjectNumber: "GCM_PROJECT_NUMBER",
geoEnabled: true,
beaconsEnabled: true
}
});
}
app.initialize()
Tagging and events can then be implemented in your app as follows:
- Sample button showing how to hitEvent:
<button onclick="XtremePush.hitEvent('test-event')"> Hit Event </button>
- Sample button showing how to hitTag:
<button onclick="XtremePush.hitTag('test-tag')"> Hit Tag </button>
- Sample button showing how to call hitTagWithValue:
<button onclick="XtremePush.hitTag('test-tag-with-value', 'value')"> Hit Tag With Value </button>
If you have any difficulty in configuring the implementation, a sample app can be built using the following two files:
A full list of our JavaScript functions and their parameters can be found in the xtremepush.js plugin file.
If you would like xtremepush to collect IDFA/Ad ID and attribution data in your app, we have a git branch of the plugin that copies the required frameworks into your app. This can be installed using the following command:
cordova plugin add https://github.com/xtremepush/XtremePush-Phonegap#master+attributions
To enable the collection functionality, the attributionsEnabled parameter in the XtremePush.register() function must also be set with a value of true.
If you would like to remove the geo-location and beacon frameworks and services from your app, please use the following command when installing the plugin:
cordova plugin add https://github.com/xtremepush/XtremePush-Phonegap#master-geo-beacon
The inbox feature can be turned on in your app by adding the following to your XtremePush.register() function:
-
inboxEnabled: true
-
Here is a sample button showing how to open inbox
<button onclick="XtremePush.openInbox()">Open Inbox</button>
If you want to use the inbox badge functionality please use the following in your XtremePush.register() function:
-
inboxBadgeCallback: "onInboxBadgeUpdate"
-
Here is a sample button showing how to retrieve the latest badge number:
<button onclick="XtremePush.getInboxBadge()">Get Inbox Badge</button>
For any further customisation of the plugin, please feel free to fork the GitHub repository and make any changes you like in your forked version, before adding the plugin to you app.