This repository was archived by the owner on Sep 15, 2021. It is now read-only.
This repository was archived by the owner on Sep 15, 2021. It is now read-only.
Calendar crash on event click #1176
Open
Description
I add an event with this method with:
$cordovaCalendar.createEvent({
title: 'Space Race',
location: 'The Moon',
notes: 'Bring sandwiches',
startDate: new Date(2015, 0, 6, 18, 30, 0, 0, 0),
endDate: new Date(2015, 1, 6, 12, 0, 0, 0, 0)
}).then(function (result) {
// success
}, function (err) {
// error
});
When I go to my native calendar on emulator (Api 23, Android 6) and I click on event created, my calendar crash.
Do you know why?