当应用程序处于后台时,通知不会在IOS上响起

时间:2019-03-20 10:37:09

标签: push-notification react-native-ios react-native-firebase

应用在后台运行且收到通知时,铃声或振动不起作用。

我的代码很简单

this.notificationListener = firebase.notifications().onNotification((notification: Notification) => {
  // SET NOTIFICATION SOUND!
  notification.setSound("default");
  firebase.notifications().displayNotification(notification);
});

当应用程序位于前景中时,它可以完美运行,但仅在后台时不起作用(Android都可以)。

我目前正在使用

"react-native": "0.57.8"
"react-native-firebase": "^5.2.0",

你能帮我吗?

0 个答案:

没有答案