How can I log in to the google account to get available calendars?
I run this code in Android
Uri calendars = Uri.parse(String.format("content://%s/calendars", "com.android.calendar"));
Cursor managedCursor = activity.managedQuery(calendars, projection, null, null, null);
// Enumerate and get all calendars
I want to do the same in the ARC app, to be able to insert/edit items from the selected calendar. How can that be done?