I can add and delete a new recurring event, but how can I edit/delete one event in a recurring event using the new Android Calendar API? And if it is possible how do I update a reminder on one event?
Regards Daniel
I can add and delete a new recurring event, but how can I edit/delete one event in a recurring event using the new Android Calendar API? And if it is possible how do I update a reminder on one event?
Regards Daniel
Copyright © 2021 Jogjafile Inc.
Maybe this will help:
If you want to delete multiple events within a recurrence, simply set the ids to some obvious string like "ToBeDeleted" and perform:
service.events().delete("primary", "ToBeDeleted").execute();
See docs