You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Roman Tcaregorodtcev edited this page Mar 30, 2018
·
1 revision
The Calendar Intent Builder is a repository for a user's calendar events. The Calendar Intent Builder allows you to perform query, insert, and update operations on calendars, events.
Date startDate = new Date();
long endDate = startDate.getTime() + TimeUnit.DAYS.toMillis(7);
OmegaIntentBuilder.from(this)
.calendar(CalendarActionTypes.INSERT_EVENT)
.startDate(startDate)
.endDate(endDate)
.title("Omega-R")
.description("Great library")
.location("New York")
.allDay(false)
.organizer("develop@omega-r.com")
.hasAlarm(false)
.startActivity();