3

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?

Jagal R Nath
  • 316
  • 5
  • 14

1 Answers1

2

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

Anand
  • 4,355
  • 2
  • 35
  • 45