Merge "Use METHOD_ALERT instead of METHOD_DEFAULT for reminders" into froyo

This commit is contained in:
Marc Blank 2010-04-17 14:54:55 -07:00 committed by Android (Google) Code Review
commit a90bb03c25

View File

@ -1091,7 +1091,7 @@ public class CalendarSyncAdapter extends AbstractSyncAdapter {
add(ContentProviderOperation
.newInsert(REMINDERS_URI)
.withValue(Reminders.MINUTES, mins)
.withValue(Reminders.METHOD, Reminders.METHOD_DEFAULT)
.withValue(Reminders.METHOD, Reminders.METHOD_ALERT)
.withValueBackReference(ExtendedProperties.EVENT_ID, eventStart)
.build());
}