.setAutoCancel (true) в firebase получает ошибку undefined не является функцией - PullRequest
2 голосов
/ 06 апреля 2019

Вот мой код для уведомления

const notification = new firebase.notifications.Notification()
  .android.setChannelId("QuanLy")
  .setSound("default")
  .setAutoCancel(true)
  .android.setSmallIcon("ic_launcher");

Нажмите кнопку

onPressSave = () => {
    if (alert.length<0) return this.inputAlertView.shake(800);
    const { name, alertTime} = this.state;
    notification.setTitle(name);
    firebase.notifications().scheduleNotification(notification, {
      fireDate: alertTime.getTime()
    });
    this.goBack();
  };

Но уведомление не исчезло после нажатия на панель уведомлений. Поэтому я добавляю .setAutoCancel(true) к коду, как показано выше. Но я получаю ошибку

enter image description here

Пожалуйста, помогите, я новичок в React native. Большое спасибо

...