The Push Notification extension allows you to send push notifications to mobile apps and desktop browsers. In this section, we will see how to send Push Notifications to your Android app using Firebase Cloud Messaging or FCM.
Use Connection ServiceIf you want to use the System’s native call service to handle calls, please refer to our guide on Android - Connection Service
On the Settings page you need to enter the following:
Set extension version
If you are setting it for the first time, Select V2 to start using the token-based version of the Push Notification extension.
If you already have an app using V1 and want to migrate your app to use V2, then Select V1 & V2 option. This ensures that the users viewing the older version of your app also receive Push Notifications.
Eventually, when all your users are on the latest version of your app, you can change this option to V2, thus turning off V1 (Topic-based) Push Notifications completely.
Select the platforms that you want to support
Select from Web, Android, Ionic, React Native, Flutter & iOS.
Notification payload settings
You can control if the notification key should be in the Payload or not. Learn more about the FCM Messages here.
Push payload message options
The maximum payload size supported by FCM and APNs for push notifications is approximately 4 KB. Due to the inclusion of CometChat’s message object, the payload size may exceed this limit, potentially leading to non-delivery of push notifications for certain messages. The options provided allow you to remove the sender’s metadata, receiver’s metadata, message metadata and trim the content of the text field.
The message metadata includes the outputs of the Thumbnail Generation, Image Moderation, and Smart Replies extensions. You may want to retain this metadata if you need to customize the notification displayed to the end user based on these outputs.
Notification Triggers
Select the triggers for sending Push Notifications. These triggers can be classified into 3 main categories:
Message Notifications
Call Notifications
Group Notifications
These are pretty self-explanatory and you can toggle them as per your requirement.
On successful login, you can register the obtained FCM Token using CometChat.registerTokenForPushNotification() function call. (You can see the process of getting the FCM Token in the next step)
Java
Kotlin
Report incorrect code
Copy
Ask AI
CometChat.registerTokenForPushNotification(MyFirebaseMessagingService.token, new CometChat.CallbackListener<String>() { @Override public void onSuccess(String s) { Log.e( "onSuccessPN: ",s ); } @Override public void onError(CometChatException e) { Log.e("onErrorPN: ",e.getMessage() ); }});
The FCM Token can be received by overriding the onNewToken() method. This token is stored as a String variable. You can choose to store it in SharedPreferences as well.
To receive messages, you need to override the onMessageReceived(RemoteMessage remoteMessage).
PushNotificationService.java has the code that provides a way you can handle messages received from CometChat users and groups.
CallNotificationAction.class is a BroadcastReceiver which is used to handle call events when your app is in the background state.
Since Android O, there have been certain restrictions added for background tasks and users cannot launch intent directly from the service. More details here.
We suggest you to create notification channel inside your application class. After Android O, it is necessary to register notification channel to allow notifications of your apps.
Java
Report incorrect code
Copy
Ask AI
private void createNotificationChannel() { // Create the NotificationChannel, but only on API 26+ because // the NotificationChannel class is new and not in the support library if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { CharSequence name = getString(R.string.app_name); String description = getString(R.string.channel_description); int importance = NotificationManager.IMPORTANCE_HIGH; NotificationChannel channel = new NotificationChannel("2", name, importance); channel.setDescription(description); channel.enableVibration(true); channel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC); // Register the channel with the system; you can't change the importance // or other notification behaviors after this NotificationManager notificationManager = getSystemService(NotificationManager.class); notificationManager.createNotificationChannel(channel); } }
You also need to add both of the above-mentioned files in your AndroidManifest.xml to make Push notification work in the background as well.
Push notification has 2 parts, namely, the notification title and notification body. The title can be: a. Name of the sender in case of one-on-one message. (E.g.: Nancy Grace) b. Name of the sender followed by group name for group messages (E.g.: Nancy Grace @ Hiking Group)The body of the message depends upon the type of message being sent. You can send a custom body by specifying the pushNotification key followed by some user-defined string for the notification body inside metadata while sending the message.The following code shows an example of a Custom body using a message of category=custom. This is however not just limited to a custom category of messages.
Converting Push Notification Payloads to Message Objects
CometChat provides a method CometChatHelper.processMessage() to convert the message JSON to the corresponding object of TextMessage, MediaMessage, CustomMessage, Action or Call.This code needs to be added to the onMessageReceived() method of the FirebaseMessagingService class.
Type of Attachment can be of the following the type CometChatConstants.MESSAGE_TYPE_IMAGE CometChatConstants.MESSAGE_TYPE_VIDEO CometChatConstants.MESSAGE_TYPE_AUDIO CometChatConstants.MESSAGE_TYPE_FILE
Push Notification Payload sample for text and media messages-
Step 1. Process push notification payload and grab BaseMessage objectTo open a chat view, firstly you will need a BaseMessage object. You can grab this from the push notification payload received in onMessageReceived(RemoteMessage message). You need to call CometChat.processMessage() method to process push notification payload.
Java
Report incorrect code
Copy
Ask AI
@Overridepublic void onMessageReceived(RemoteMessage remoteMessage) { try { JSONObject messageData = new JSONObject(remoteMessage.getData().get("message")); BaseMessage baseMessage = CometChatHelper.processMessage(messageData); //Process BaseMessage and show Notification } catch (JSONException e) { e.printStackTrace(); }}
Step 2 . Handle Notification ActionsYou can launch the chat view after you tap on the Message Notification by creating PendingIntent and set it with NotificationBuilder object.
CometChatMessageListActivity is part of UI Kit Library. You can replace CometChatMessageListActivity with your required class.