android channel.enableLights (true) не показывает светодиодное уведомление - PullRequest
0 голосов
/ 04 марта 2020

Я использую response-native-firebase, чтобы показать свое уведомление в своем приложении.

По какой-то причине я не могу сделать так, чтобы уведомление привело к миганию в android 8 +.

Это мой код

const notification = new firebase.notifications.Notification();
  const channel = new firebase.notifications.Android.Channel(
    "channelId",
    "channelId",
    firebase.notifications.Android.Importance.Max
  );
  channel.enableLights(true);
  channel.enableVibration(true);

  firebase.notifications().android.createChannel(channel);
  notification.android.setPriority(firebase.notifications.Android.Priority.Max);

  notification.android.setChannelId("channelId");
  notification.android.setLights(0xff00ff00, 200, 200);

  notification.setTitle(message.data.title);
  notification.setBody(message.data.body);
  firebase.notifications().displayNotification(notification);

реактивная база: 5.5.0

Заранее спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...