You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to set a custom notification sound while receiving the firebase notification in my Flutter application. I tried adding the custom sound to the android project inside res/raw folder and to the iOS directly to the Runner project. While sending the notification, I have included the sound: "custom_sound" in the payload as below.
Hi @karthikeyanp307
I see there's an open issue addressing the case you described #4521.
Please follow up on that issue, I'm closing the current one as a duplicate.
If you disagree, please write in the comments and I will reopen it.
Thank you
Hi Team,
I need to set a custom notification sound while receiving the firebase notification in my Flutter application. I tried adding the custom sound to the android project inside res/raw folder and to the iOS directly to the Runner project. While sending the notification, I have included the sound: "custom_sound" in the payload as below.
"notification" : {
"body" : "body",
"title" : "title",
"sound" : "custom_sound"
}
"android":{
"notification":{
"sound":"custom_sound"
}
}
"apns" : {
"aps": {
"sound": "custom_sound"
}
}
After several attempts, only the default notificaiton sound is getting played. Let me know if we need to do anything to make this work.
Thanks.
The text was updated successfully, but these errors were encountered: