Skip to main content
Version: v11.6.0

How to use Push Notification in WaveMaker Mobile App


Scenario

An app is used to share tasks across the users in a team. A user is assigned a task that should be completed by 5:00 PM and it is 4:30 PM already and task is not completed yet. The app wants to send an auto-reminder to the user about the task. However, the app is not open on the user’s device. In this case, the app uses a third party service to send an sms or an email to the user.

In addition to using notification channels, a mobile operating system also provides a push notification service. Using this service, an app can send messages to the user even when the app is not in a foreground.

How it works

Operating system maintains an http service to which all notifications have to be posted. This service acts as a post office. Each mobile app has to register with this service and should obtain a registration id. If any notification addressed to the registration id is received, then service will simply forward them to respective mobile device. Registration id is unique for each app on device. In iOS, this service is called Apple Push Notification service (APNS). In Android, this service is called Firebase Messaging Service.

Architecture

First, both mobile app and server should register with APNS / FCM.

  1. Mobile App registers for device notifications and gets registration token. This token functions as the address to send a push notification to.
  2. Backend server registers with APN server (iOS) and FCM server (Android) by submitting credentials.
  3. After receiving token, mobile app sends the token to backend server.
  4. Backend server stores it in the database for later use.

These are the steps for delivering a push notification:

  1. When Backend wants to send a push notification to users, Backend retrieves the stored registration tokens of devices of those users.
  2. Then, a push notification request is sent to the corresponding user devices (identified with registration tokens) via FCM / APNS.
  3. FCM/ APNS will send push notification to all the devices which have this app installed.

App Example

A Cordova plugin called phonegap-plugin-push can be used by the app to create a message to be broadcast to all logged-in users.

Prerequisites

For registration, app and backend server have to provide some information to push notification service so that they can be verified. These credentials have to be obtained first.

note

In a WaveMaker application, ‘Application Id’ in ‘Build for Android’ dialog is used as the App Id.

Follow below steps to achieve the Android prerequisites:

Android Prerequisites

Follow below steps to achieve the Android prerequisites.

google-services.json

An app for Android should have google-services.json that has all information required for registering with Firebase messaging service. Follow below steps to obtain it:

  1. Open Firebase console. Create a new project to register for notifications.
  2. Select the created project and click the setting icon at the top and choose Project Settings.

  1. From settings, go to the general app and click ‘Add Firebase to your Android App’.

  1. A form appears to register your app. Application id that is mentioned in ‘export cordova dialog’ of your WaveMaker project has to be entered as Android package name in this form. Click Next.

  1. Download google-services.json and click next.

Service JSON

Firebase also provides another JSON file that is required by the backend to push messages. This JSON is called the service JSON.

  1. Open Firebase console. Open your app that was created above.
  2. Select your project and click the setting icon at the top and choose Project Settings.

  1. In Firebase Console, go to settings and open ‘Service Accounts’ tab.

  1. A button with label Generate new private key is located the bottom of page. A JSON file is downloaded after clicking this button. Rename this file as FCM-admin-service-key.json.

iOS Prerequisites

Steps to configure iOS app in developer portal

Configuring App ID

App ID configured for Push Notifications on Apple Developer Portal has to be created first.

  1. Log in on Apple’s Developer Center.
  2. Select the Account tab to go to Certificates, Identifiers & Profiles.
  3. If you have not already created an App ID, create it now and make sure push notifications is enabled. Or edit your existing App ID and enable them.
note

Wildcard (ending with an asterisk) app id is not allowed to use push notification service.

APNS Certificate

Backend server requires to provide an APNS certificate to connect APNS.

  1. Edit the app id created above and open push notification section.

  1. Click Create Certificate and follow the instructions.

  1. When prompted upload the CSR file and continue. Download and install the certificates on your Mac. If the certificate is already created, a download option is shown.
  2. In Mac, open Keychain Access, click login and drag-drop the downloaded certificate.
  3. Navigate to the certificate you want to use for your push notifications. Right-click and export it as a P12 certificate. Use as name apns-dev-cert.p12 (in case of the development certificate). In this demo app, this certificate is named as Certificates.p12. When prompted enter a password to protect the file and note it for future use.

Provisioning profile

A provisioning profile has to be created for the app id created above:

  1. Create a provisioning profile for your app.

  1. Continue with the next steps
  2. Download the profile. Install the provisioning profile on your Mac by double-clicking it.

App Creation

  1. From File Explorer open pom.xml and add firebase-admin and javapns-jdk16 as dependencies as shown below:
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-admin</artifactId>
<version>6.4.0</version>
</dependency>
<dependency>
<groupId>com.github.fernandospr</groupId>
<artifactId>javapns-jdk16</artifactId>
<version>2.2.1</version>
</dependency>

  1. Import Resource. Import the following resources to the respective folders:

    • Import google-services.json (downloaded earlier) to the webapp folder.

    • Add the below script in project config.xml (i.e <project>/src/main/webapp/config.xml) file under <platform name="android">. <resource-file src="www/google-services.json" target="/app/google-services.json"/>
    • Import ‘FCM-admin-service-key.json’ (downloaded earlier) to /project/src/main/resources.
    • Import .p12 Certificate to /project/src/main/resources.
  2. Create a db named DeviceDetails, which will store all the deviceIds, username and device type i.e. OS (Android or iOS). Mark these columns as unique.

  1. Turn on security. Here we are setting it to Demo.

  1. Create a Java Service named PushService. This service will contain registerDevice, unregisterDevice and notify methods.

    • RegisterDevice will create a new record of the registered device details (deviceId, os, userName) in the db.

    • UnregisterDevice will delete the device details record in db.

    • Notify will request the GCM/APNS to broadcast the messages to the registered devices.

    To obtain the above-specified functionality, download the Java code file and include the Java code in this service file.

note

Replace packageName, imports specific to the app, senderId, apiKey, iosCertificateName, iosCertificateKey (password for iosCertificate) values in above code.

  1. Create a service variable named RegisterPush to register the device to receive push notifications.

    • Bind input fields

      • deviceId to bind:deviceToken

      • OS to deviceInfo variable and

      • userName from loggedInUser variable.

      • DeviceId will be bound on successful push registration which is written in app.js.

        var push;

function enablePush() {
// Enable push only if this is invoked inside mobile with push notification plugin..
if (!push && window.cordova && PushNotification) {
// Initialize the plugin
push = PushNotification.init({
android: {
forceShow: true,
vibrate: true
},
ios: {
alert: true,
sound: true
}
});

push.on('registration', function(data) {
// On Successful registration with push notification center, save the registration id on our backend.
var pushVar = App.Variables.RegisterPush;
if (App.deviceToken === data.registrationId) {
return;
}
App.deviceToken = data.registrationId;
pushVar.setInput({
'deviceId': App.deviceToken
});

pushVar.invoke();
});

push.on('notification', function(data) {
console.log("notification: %O", data);
});

}
}
/* perform any action with the variables inside this block(on-page-load) */

App.onAppVariablesReady = function() {
/*
* variables can be accessed through 'App.Variables' property here
* e.g. App.Variables.staticVariable1.getData()
*/

//If the user is already logged-in, then enable push
if (App.Variables.loggedInUser.dataSet.name) {
enablePush();
}
};
  1. On every successful login, register the device for receiving the push notification. For this, open the Actions dialog and select the pre-defined loginAction.

Go to Events tab and write the JavaScript function on loginVariable success.

App.loginActiononSuccess = function(variable, data, options) {
    //On successful login, enable push
    enablePush();
};
  1. If user is already logged-in, then enable push.
  2. Initialize the plugin to get the deviceId, and start listening to all the events when notification is received. Store the device Id in DB that we receive on successful registration event.
  3. On the Main page, drag and drop a text widget and button as shown below.

  1. Create a service variable named sendNotification which will call notify method of PushService

  • Bind input field message to the text widget datavalue and currentUser to the name field of loggedInUser variable

  1. On Send button tap, invoke the sendNotification service variable created above.Enter the text and click on button, push message will be delivered to the devices.

  1. Create a service variable named UnregisterPush which will call unregisterDevice method of PushService.

  • Bind the input field deviceId to bind:deviceToken, which is in app.js, os to deviceInfo variable and userName to loggedInUserName variable as shown below.

  • On success of UnregisterPush, invoke Logout Action.

  1. Add an anchor in mobile navbar, on tap of this link invoke UnregisterPush service variable.

  1. Add a custom plugin in ‘Build for Android’ dialog

App Usage

  • The plugin that is mentioned above uses ‘hook’ concept of Cordova for Android build. But, Hooks are not supported in build.phonegap.com. So, Android builds fail when this plugin is added in build.phonegap.com. But, Android app can be built using the using Build For Android menu option inside WaveMaker studio or through a manual build.

  • iOS app can be created either through a manual build or through build.phonegap.com. Please make sure that provision profile that is created above (with app id that has push notifications enabled) should be used
  • Build and test the app. Login in one device with user/user credentials. Login to another device with admin/admin credentials. If user sends a message, the other user should get a push notification.

Conclusion

Our aim is to show how this plugin can be integrated into WaveMaker and how to create push notifications. This integration logic can be used at various places as per your use-case. For complete features of the plugin, please visit the plugin site.