Android Mobile Push Notifications

PubNub Mobile Push Notifications gateway bridges native message publishing with third-party push notification services including Apple Push Notification service (APNs) and Firebase Cloud Messaging (FCM). The code below shows a sample implementation needed to register for remote notifications, receive the corresponding device token, register the device token to a PubNub channel, and publish a message.

Step 1: Configure Account Settings

Before you can use PubNub Mobile Push Notifications feature with Firebase Cloud Messaging, you must first configure your accounts. Follow these steps to configure both your Firebase Cloud Messaging and PubNub accounts for your application.

Step 1a: Download a Firebase Private Key File

Update your keyset configuration

If you use the legacy HTTP FCM to send Mobile Push Notifications, you must migrate to the new HTTP v1 FCM before June 2024. Refer to the migration guide for details.

Log into the Firebase console and click the Create a project button. Follow the project creation wizard.

Firebase Create Project

Click the settings icon in the left top corner of your project overview page and go to Project settings.

Firebase Project Settings

Switch to the Service accounts tab, click the Generate new private key button, and download your FCM private key file.

Firebase Generate New Private Key

Step 1b: Upload the Firebase Private Key File to Your Admin Portal

On the Admin Portal, go to the Mobile Push Notifications section on your app's keyset. Enable the feature and upload the file downloaded from Firebase through the Private key file option in the Firebase Cloud Messaging section.

Admin Portal Upload Private Keyset File

Migrate from legacy FCM APIs to HTTP v1

The Legacy FCM APIs that used an API Key have been deprecated by Google, and will be removed in June 2024. The Admin Portal will continue supporting the legacy FCM API Keys until Google removes those deprecated APIs entirely. Still, it is strongly recommended that you configure FCM HTTP v1 following the steps described in this section.

Step 2: Request Device Token

To add Cloud Messaging support to your application, open your Android Studio project and switch to the Project view. Then, add the google-services.json (downloaded during step 1) into your Android app module root directory.

Set FCM API Key

Step 2a: Configure Gradle

Refer to the Google documentation for the steps to configure your Gradle files to use the google-services Gradle plugin and add the dependencies for the Firebase products that you want to use.

Step 2b: Firebase Registration

The following code shows how to create a Firebase Installations ID from FirebaseMessaging. This can be done anywhere inside the app, but for this example, it's in the onCreate method of the AppCompatActivity to ensure it's always executed.

Read Firebase Docs for more details.

public class MainActivity extends AppCompatActivity {
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SharedPreferencesManager.init(getApplicationContext())

FirebaseMessaging.getInstance().getToken().addOnCompleteListener(new OnCompleteListener<String>() {
@Override public void onComplete(@NonNull Task<String> task) {
if (!task.isSuccessful()) {
Log.w(TAG, "Fetching FCM registration token failed", task.getException());
return;
}
Log.d(TAG, getString(R.string.msg_token_fmt, task.getResult()));
}
});
}
show all 16 lines

Step 3: Receive & Monitor Device Token

To receive the Device Token (and updates to the token value) and mobile push notifications, you must create a custom class that extends FirebaseMessagingService.

The onNewToken callback fires whenever a new token is generated. After the initial FCM registration and device token has been delivered, new tokens will be delivered to this delegate method and your PubNub channel registrations will need to be updated.

public class MyFirebaseMessagingService extends FirebaseMessagingService {
@Override public void onNewToken(String token) {
String oldToken = SharedPreferencesManager.readDeviceToken();
if (token.equals(oldToken)) { return; }
SharedPreferencesManager.write(token);

updatePushNotificationsOnChannels(SharedPreferencesManager.readChannelList(), token, oldToken);
}
}

Step 3a: Cache Device Token & Registered channels

To ensure that an application can properly handle adding, updating, and removing registered push channels, there are two pieces of information that should be cached to avoid race-conditions: the Device Token and the list of registered channels. Not only will properly caching allow for easy access from anywhere inside the application, it will also prevent against race-conditions when multiple registration operations are queued at the same time.

SharedPreferences provides basic persistent storage, but can be replaced by more sophisticated storage as your use-case requires. The following code will ensure the accessing of the cached information will be thread-safe regardless of storage choice.

A new Device Token can be provided from the system at anytime, and should be stored whenever it's received. The list of registered channels should also be cached in a similar manner as the Device Token, and should be updated whenever registered channels are added or removed. Set is used for the convenience of ensuring there are no duplicate channels.

public class SharedPreferencesManager {
private static SharedPreferences sharedPref;
private SharedPreferencesManager() { }

public static void init(Context context) {
if(sharedPref == null)
sharedPref = context.getSharedPreferences(context.getPackageName(), Context.MODE_PRIVATE);
}

public static final String FCM_DEVICE_TOKEN = "PUBNUB_FCM_DEVICE_TOKEN";
public static @Nullable String readDeviceToken() {
return sharedPref.getString(FCM_DEVICE_TOKEN, null)
}
public static void writeDeviceToken(String value) {
SharedPreferences.Editor prefsEditor = sharedPref.edit();
show all 29 lines

Step 3b: Update Existing Registrations

A simple helper method can be created to consolidate the remove-then-add functionality when updating your existing registered channels.

public void updatePushNotificationsOnChannels(String[] channels, String deviceToken, String oldToken) {
if (oldToken != null) {
pubnub.removeAllPushNotificationsFromDeviceWithPushToken()
.pushType(PNPushType.FCM)
.deviceId(oldToken)
.async(result -> { /* check result */ });
}

pubnub.addPushNotificationsOnChannels()
.pushType(PNPushType.FCM)
.deviceId(deviceToken)
.channels(channels)
.async(result -> { /* check result */ });
}

Step 4: Manage Device Registrations

Once a Device Token is obtained, it can be registered with list of channels to allow Mobile Push Notifications to be send to the device. Channels can be dynamically added and removed based on the use cases of the application, and the current registrations for a Device Token can also be viewed.

Step 4a: Register New Channels

When adding channels, it's recommended to obtain the Device Token and List of Registered Channels from a cached source. After successfully registering channels, the newly registered channels should be added to the cached list.

String cachedToken = SharedPreferencesManager.readDeviceToken();

pubnub.addPushNotificationsOnChannels()
.pushType(PNPushType.FCM)
.deviceId(cachedToken)
.channels(Arrays.asList("ch1", "ch2", "ch3"))
.async(result -> { /* check result */ });

Step 4b: List Registered Channels

Once device registrations are added, you can confirm the APNs registrations for the device by listing all channels that the device is registered with. Since the list on the server is the source-of-truth, we will update our cached list to reflect the channels currently registered on the server.

String cachedToken = SharedPreferencesManager.readDeviceToken();

pubnub.auditPushChannelProvisions()
.pushType(PNPushType.FCM)
.deviceId(cachedToken)
.async(result -> { /* check result */ });

Step 4c: Remove Existing Registrations

When removing channels it's recommended to obtain the Device Token and List of Registered Channels from a cached source. After removing registering channels, the channels that were removed should be also removed from the cached source.

String cachedToken = SharedPreferencesManager.readDeviceToken();

pubnub.removePushNotificationsFromChannels()
.pushType(PNPushType.FCM)
.deviceId(cachedToken)
.channels(Arrays.asList("ch1", "ch2", "ch3"))
.async(result -> { /* check result */ });

Step 5: Construct the Push Payload

To send a push notification, include the appropriate push notification payload for FCM when you publish a message and PubNub will appropriately parse the message.

FCM HTTP v1

We recommend that you use the new pn_fcm format instead of the deprecated pn_gcm object. For more information on moving from the legacy HTTP FCM to FCM HTTP v1, refer to the FCM migration guide.

FCM Mobile Push Notification Payload Structure

The structure of the pn_fcm payload is as follows:

{
"pn_fcm": {
"notification": {
"title": "My Title",
"body": "message notification text"
},
"android": {
"collapse_key": "group",
"data": {
"age": "10"
},
"ttl": "30s"
},
"webpush": {
// FCM Webpush config
show all 29 lines
FieldTypeRequiredDescription
pn_fcmObjectYesContainer for Firebase Cloud Messaging (FCM) payload. The specification is compatible with FCM message payload structure to ensure PubNub processes the message correctly when delivering it to FCM.
 → notificationObjectNoBasic notification template to use across all platforms. This part is platform-agnostic, but within the context of pn_fcm, it's being prepared for FCM parsing.

It can take several optional parameters, like title, body, or image.

Check official Firebase docs for the full list of available parameters.
 → androidObjectNoAndroid-specific options for messages sent through FCM connection server. Specifies how messages should be handled on Android devices.

It can take several optional parameters, like collapse_key, data, or ttl.

Check official Firebase docs for the full list of available parameters.
 → pn_exceptions[String]NoA list of Device Tokens that should be excluded from receiving the notification.
pn_debugbooleanNoA flag that enables push debugging info to the pndebug channel. For more information, refer to Mobile Push Troubleshooting.
pn_dry_runbooleanNoA flag that allows developers to test a request without actually sending a message.
Don't specify topic, token, and condition

Don't specify the token, topic, or condition targets in the payload on your own as PubNub provides a mechanism to target only the devices registered to PubNub channels.

If you include a topic field in your payload, FCM throws an error when spotting more than one target field.

FCM JSON payload error: Invalid value at 'message.data[0].value' (TYPE_STRING), 1234\nInvalid JSON payload received. Unknown name \"nick\" at 'message.data[1].value': Cannot find field.\nInvalid value at 'message' (oneof), oneof field 'target' is already set. Cannot set 'token'"

Examples

Certain PubNub SDKs use helper methods to create a valid FCM payload.

Read Firebase Docs for more details.

{
"pn_fcm": {
"notification": {
"title": "Chat Invitation",
"body": "John invited you to chat"
},
"pn_exceptions" : ["device-token1", "device-token2"]
}
}

Step 6: Publish the Push Notification

Once the push payload is ready use the publish method to publish the message on a channel. When PubNub finds the pn_fcm payload, it will retrieve all device tokens that are associated for push on the target channel and forward a push notification request to the appropriate push service for those associated devices.

pubnub.publish()
.channel("ch1")
.message(pushPayload)
.async(result -> { /* check result */ });

For more information about push troubleshooting, refer to Mobile Push Troubleshooting.

Last updated on