0

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)

Google Calendar Reminder

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?

3 Answers3

1

If you want to fetch list of reminders, use Events.list. It returns events and the accompanying reminders.

Default reminders

Default reminders are also returned when doing an Events list query.

ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
  • Thank you for the answer but I need to read the reminders from Google Calendar not the events with the reminders settings inside. The reminders I can't read are the simplified events provided by the google calendar – Kaba Droid42 Feb 05 '18 at 08:42
0

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

0

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.