Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
var endMoment = startMoment.add(30, 'm');
var endDate = endMoment.format('YYYY-MM-DD hh:mm');
// Create the Calendar Intent.
SendIntentAndroid.addCalendarEvent({
title: habits[habitIdx].name,
description: 'Reminder from The Hoick Habit App for Habit: ' + habits[habitIdx].name,
startDate: startDate,
endDate: endDate,
recurrence: 'daily'
});
});
});
} else {
// Open Calendar for editing reminder event.
SendIntentAndroid.openCalendar();
}
},