Reputation: 1356
i am trying to add a recurring event to a google calendar in ICS. The code works for adding a single event but i do not seem to be able to get the correct format for the end date.
This is my code
values.put(CalendarContract.Events.RRULE, "FREQ=DAILY");
values.put(CalendarContract.Events.RDATE, "20120325");
What would be the correct format for the RDATE string assuming an end date of 4/25/2012.
Upvotes: 1
Views: 1278
Reputation: 2524
It follows the RDATE spec - http://www.kanzaki.com/docs/ical/rdate.html
Upvotes: 1