How do I send a data-only Android notification using the Android SDK?

56 Views Asked by At

Using Firebase Cloud Messaging I can push data-only messages. Doing this sends data to my app without showing a notification to the user. Is there any way to do this using only the Android SDK?

1

There are 1 best solutions below

0
On

If your intention is to show a notification to the user when your app receives data.
You can manually create a notification in your customized FirebaseMessagingService.

According to the FCM documentation, Data-only messages are forwarded to your customized FirebaseMessagingService whether your app is foreground or background.

So what you have to do is manually create a notification by using Notification.Builder and NotificationManager in onMessageReceived of your customized FirebaseMessagingService.
You can check the sample code here.