通知抛出firebase工作,但没有声音



我正在使用云功能(firebase(发送通知,它运行良好,但没有声音,我不知道为什么。。知道吗?

await FirebaseMessaging.instance.setForegroundNotificationPresentationOptions(
alert: true,
badge: true,
sound: true,
);

我尝试了这个代码,但我仍然收到没有声音的通知

添加

sound: default,

在数据或通知中。像这个

{
data: {

..........        
},
notification: {
sound: default,
}
}

在您的JSON请求中。

最新更新