Jagal R Nath
Jagal R Nath

Reputation: 358

How to enable notification sound for flutter app using firebase notification?

I am building a flutter application with firebase notification. But, I need a custom sound for notification. I had implemented playSound: true, sound: RawResourceAndroidNotificationSound('notification'), under AndroidNotificationDetails and copied the mp3 file to the raw folder in the proper location, but no use. Does anyone have a solution for this issue?

Upvotes: 2

Views: 6529

Answers (1)

Anandh Krishnan
Anandh Krishnan

Reputation: 6022

Add this sound key in your notification payload

{
    "to" : "AsS23rH5543:CI2k_AsS23rH5543CIZvvDMAsS23rH5543P1...",

    "notification" : {
      "body" : "your body",
      "title" : "Your Title",
      "icon" : "your icon",
      "sound" : "default"
    }
  }

If you need more help refer this link

Upvotes: 2

Related Questions