Skip to content

fede1295/Titanium-Calendar-Intent

 
 

Repository files navigation

Titanium Calendar Intent

It creates Intent for Android default calendar.

Usage

var calendar = require('com.ti.calendar.intent');

var time = new Date().getTime();

calendar.addEvent({
  title: "Event Title",
  location: "Event Location",
  description: "Event Description",
  beginTime: String(time),
  endTime: String(time + 3600 * 1000),
  allDay: false,
  email: "[email protected],[email protected]",
  rrule: "FREQ=WEEKLY;COUNT=10;WKST=SU",
  accessLevel: calendar.ACCESS_DEFAULT,
  availability: calendar.AVAILABILITY_TENTATIVE
});

Refer to the Calendar Intents.

License

The MIT License

Copyright

Copyright (c) 2013 infiniteloop Co., Ltd.

About

It creates Intent for Android default calendar.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 50.4%
  • Python 36.2%
  • JavaScript 13.4%