gpt4 book ai didi

dart - 带有自定义声音的 Firebase 推送通知 (Flutter)

转载 作者:IT王子 更新时间:2023-10-29 06:43:30 27 4
gpt4 key购买 nike

我目前正在使用 firebase 消息传递云为我的应用推送通知。我正在尝试为推送通知制作自定义通知声音。我相信这可以通过将“声音:blabla.mp3”放入有效负载来完成,但是我如何在 Dart 页面中定义声音?

最佳答案

使用flutter_local_notifications包裹

AndroidNotificationDetails androidNotificationsDetails = AndroidNotificationDetails(
'your other channel id',
'your other channel name',
'your other channel description',
importance: Importance.Max,
priority: Priority.Max,
enableLights: true,
playSound: true,
sound: RawResourceAndroidNotificationSound('notification'),
);

注意:你应该在 android/app/src/main/res/raw/notification.mp3 中添加 notification.mp3 文件并且不要忘记指定 playSound:

playSound: true,

这在前台/后台以及应用程序关闭时对我有用。

关于dart - 带有自定义声音的 Firebase 推送通知 (Flutter),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53531387/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com