Skip to content

Commit e272cbe

Browse files
Michael ChanAndroid (Google) Code Review
authored andcommitted
Merge "Add support for custom app and uri in events"
2 parents bb9d6e6 + bb9fd4a commit e272cbe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

core/java/android/provider/CalendarContract.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,6 +1354,8 @@ public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException
13541354
GUESTS_CAN_INVITE_OTHERS);
13551355
DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, GUESTS_CAN_MODIFY);
13561356
DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, GUESTS_CAN_SEE_GUESTS);
1357+
DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, CUSTOM_APP_PACKAGE);
1358+
DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, CUSTOM_APP_URI);
13571359
DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, ORGANIZER);
13581360
DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, _SYNC_ID);
13591361
DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DIRTY);
@@ -1556,6 +1558,8 @@ public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException
15561558
* <li>{@link #GUESTS_CAN_MODIFY}</li>
15571559
* <li>{@link #GUESTS_CAN_INVITE_OTHERS}</li>
15581560
* <li>{@link #GUESTS_CAN_SEE_GUESTS}</li>
1561+
* <li>{@link #CUSTOM_APP_PACKAGE}</li>
1562+
* <li>{@link #CUSTOM_APP_URI}</li>
15591563
* </ul>
15601564
* The following Events columns are writable only by a sync adapter
15611565
* <ul>

0 commit comments

Comments
 (0)