Segun Ajala

Results 3 comments of Segun Ajala

Do something like this to set a correct time: `const getCorrectDate = () => { const date = new Date(); date.setDate(date.getDate() + 1); date.setHours(23); date.setMinutes(54); return date; }; `

@naseemkhan7021 thank you so much. Your suggestion worked!

If you are using id in the notification for android, it has to be a string of numbers and not letters or a mixture of letters and numbers. You could...