When I add one reminder for a calendar event, it shows up on all devices and 
emulators logged in to that calendar account. However, if I add multiple 
reminders for that event, only the device they were added from sees 
multiple reminders, all other devices see the last reminder added only.
publicintinsert(inteventId,intminutes){ContentValuesvalues 
=newContentValues();values.put(Reminders.EVENT_ID,eventId);values.put(Reminders.MINUTES,minutes);values.put(Reminders.METHOD,Reminders.METHOD_ALERT);context.getContentResolver().insert(Reminders.CONTENT_URI,values
 );}//After this line, all devices see this reminderinsert(32,10);//After this 
line, locally there will be two reminders but on other devices//this 15 minute 
reminder will REPLACE the original reminder!insert(32,15);
Is there a way to put multiple reminders on all devices?

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to