FAQ
As there are some extra options for notifications on each platform, Is there any option to set them?
On Android, How to make sure the notifications get a new entry for each delivered notification in the notification center dashboard?
On Android, Is it possible to show the notification even when the app is in foreground?
On Android, our server has different custom payload keys for title, tag and other standard keys. How to make the plugin work with the existing server setup?
What are some payload formats for reference?
// Android FCM payload example
{
"to": "APA91bE38IGujnSN5..",
"data":{
"content_title" : "Title here"
"content_text":"Content text here...."
"ticker_text" : "Ticker text shown in status bar goes here"
"tag" : "OptionalTag - This needs to be diff if you want to overwrite previous notification"
"custom_sound" : "notification.mp3"
"large_icon":"NativePlugins.png"
"badge": 5 - Set a number over here to display badge on the app icon
"user_info":
{
"key1" : "value1"
"key2" : "value2"
}
}
}
I'm currently using Unity's Mobile Notifications package and how difficult it is to migrate to your plugin?
Last updated