Kaba Droid42
Kaba Droid42

Reputation: 13

How to get reminders list programmatically?

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?

Upvotes: 0

Views: 1118

Answers (3)

Edgencio Da Calista
Edgencio Da Calista

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

Kaba Droid42
Kaba Droid42

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

ReyAnthonyRenacia
ReyAnthonyRenacia

Reputation: 17623

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.

Upvotes: 1

Related Questions