简体   繁体   中英

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?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM