Reputation: 13
I created an Android app that read all the events of the calendar, it's work fine but I can't read the list of reminders: the simplified event in the Google calendar identified by this icon (knot on the finger)
Someone can tell me how can I read this type of event or where can I find a tutorial or a guide where this is explained?
Upvotes: 0
Views: 1118
Reputation: 515
According to OferR The Reminders data is held in a database and accessible by the 'com.google.android.gms.reminders.provider.RemindersProvider' content provider.
So, the provider is not exported and therefore is not accessible to third party apps.
Upvotes: 0
Reputation: 13
I discovered that the reminders aren't only on calendar but are in different Google app (keep for example). Unfortunately it's not possible to access a this kind of data.
This the link of the answer in Stackoverflow: How to read reminders in google calendars
Upvotes: 0
Reputation: 17623
If you want to fetch list of reminders, use Events.list. It returns events and the accompanying reminders.
Default reminders are also returned when doing an Events list query.
Upvotes: 1