Вот мой код для уведомления
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)
к коду, как показано выше.
Но я получаю ошибку
Пожалуйста, помогите, я новичок в React native. Большое спасибо