I\'m trying to read the reminders set by the user. What I mean with \"reminder\": currently there are two different meaning, the first one is the \"alert\" related to each event
Try to use 'ACTION_EVENT_REMINDER' broadcast, this intent get fired when an alarm notification needs to be posted for a reminder (android.intent.action.EVENT_REMINDER).
Here's a sample code for EVENT_REMINDER:
IntentFilter filter = new IntentFilter(CalendarContract.ACTION_EVENT_REMINDER);
filter.addDataScheme("content");
registerReceiver(myRemindersReceiver, filter);