0

我正在使用React Native Microsoft AppCenterwhich 利用Firebase Cloud MessagingAndroid 应用程序。

  • 当应用程序打开时,我会收到推送通知,
  • 当应用程序在后台时,通知仅出现在系统托盘中,但没有实际的Notification.

我必须打开托盘才能看到通知。任何帮助将不胜感激

4

1 回答 1

0

所以最后我确实找到了答案。以防万一这是其他人绊倒的事情...

您需要将“声音”键和“默认”值添加到自定义数据。

"notification_content": {
  "name": "Some Name",
  "title": "Some Title",
  "body": "Some...body",
  "custom_data": { "sound": "default" }
},
"notification_target": {
  "type": "devices_target",
  "devices": ["Some device ID"]
}
于 2018-01-16T03:08:22.153 回答