应用在后台运行且收到通知时,铃声或振动不起作用。
我的代码很简单
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",
你能帮我吗?