Reminders are now retrieved/updated as part of CalendarEvent.
AddEventReminderAsync still works (and now has tests) but is deprecated in favor of just using AddOrUpdateEventAsync to add/remove/modify reminders. It also no longer returns a bool and no longer considers the reminder argument optional (small breaking change... it never returned anything but true and a new CalendarEventReminder has the same default values as were used if null was provided).
Also some extra general refactoring, especially on Android.
Resolves #2
Reminders are now retrieved/updated as part of
CalendarEvent
.AddEventReminderAsync
still works (and now has tests) but is deprecated in favor of just usingAddOrUpdateEventAsync
to add/remove/modify reminders. It also no longer returns abool
and no longer considers thereminder
argument optional (small breaking change... it never returned anything buttrue
and a newCalendarEventReminder
has the same default values as were used ifnull
was provided).Also some extra general refactoring, especially on Android.