Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-17245] Android: Android Calendar fix for Recurring events

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionDuplicate
Resolution Date2018-06-12T11:05:19.000+0000
Affected Version/sRelease 3.3.0
Fix Version/sn/a
ComponentsAndroid
Labelsandroid, calendar
ReporterDavid Call
AssigneeYordan Banev
Created2014-06-05T18:15:53.000+0000
Updated2018-06-12T11:05:19.000+0000

Description

We have found it is very simple to enable this with a few lines of code. Our app currently depends on this fix. We would appreciate it if you could add these lines of code to your repository for the next release. In EventProxy.java under android/modules/calendar/src/java/ti/modules/titanium/calendar add the following to the createEvent function - i put it after the data.containsKey("end") section if (data.containsKey("rrule")) { event.recurrenceRule = TiConvert.toString(data, "rrule"); eventValues.put("rrule", event.recurrenceRule); }

Comments

  1. Mauro Parra-Miranda 2014-06-30

    Thanks for your report! The priority will be set by the Platform Team.
  2. Far 2014-12-29

    Recurring alarms can be simply provided on Android with AlarmManager.setRepeating() also.
  3. David Call 2016-01-11

    This fix is for Recurring Events not alarms.
  4. David Call 2017-09-13

    Amazing how adding two lines of code (given to you) takes over 3 years!!!!!!!

JSON Source