Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I create a calendar event from a JavaScript / jQuery Mobile / PhoneGap app in iOS/Android?

Are there any, e.g., PhoneGap plugins? Didn't see any in the official repository.

  • For iOS, the Event Kit framework (iOS 4.0+) seems to be able to add an event.
share|improve this question

4 Answers

Currently the PhoneGap development roadmap does not include calendar support. However, there are many requests for it. See this post called "Calendar plugin following W3C calendar API" which points to the PhoneGap-Calendar-Plugin project which includes some initial calendar support for Android.

share|improve this answer
Also it's not on the Cordova roadmap wiki.apache.org/cordova/RoadmapProjects – PiTheNumber Mar 4 at 16:18

May be I'm just saying something silly, in that case forgive me. But what about creating an iCal file on the fly? Again, this is just a hint (and probably not so helpful).

share|improve this answer
Unfortunately, that doesn't actually work... I recently opened a question on how to do exactly that as iCal is not supported by Android – Kaiesh Jul 11 '12 at 19:25
1  
As that SO discussion shows now, you can create an iCal file for iPhone and a vCal file for Android. – superjos Dec 27 '12 at 18:59

Adding an event to the iOS calendar is very simple with the latest API. However, you need to create your own plugin in order to do it.

since this is platform specific, come time will pass before there is an official PhoneGap plugin.

share|improve this answer

I found plugins for Android and iOS but they do not have the same JavaScript API so you have to write different code for both systems or add another layer. Also they are not up to date and will need fixes to run with Cordova 2.2.0. To make things worse documentation is kind of short:

Android

Dcheng's Android Plugin is able to create, remove and search calender events but is totally outdated and will not work as it is. With Android 4.0 there is a Calendar Provider that makes things easier but still I did not find a good plugin. jbajor can only add events and twistandshout only search events.

iOS

Felixactv8's iOS Plugin is able to create, remove and search calender events. Notice that in iOS there is no event id, so searching your events will be fun. The author explains how to add the two needed frameworks in xcode:

the iphone calendar uses the 2 frameworks, EventKit.framework and EventKitUI.framework.

if you click on the xcode icon, you should see the project icon and the target icon. click on the target icon, then click build phases. Click the dropdown for "Link Binary with libraries. Click the plus sign at the bottom of the window, then search for both frameworks. Add both of those frameworks, rebuild the project and run it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.