I have
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", dateStart.getTime());
intent.putExtra("allDay", false);
intent.putExtra("rrule", "FREQ=DAILY");
intent.putExtra("endTime", dateEnd.getTime());
startActivity(intent);
To compile an event and I want to run the event one time.
The line that set the frequency is
intent.putExtra("rrule", "FREQ=DAILY");
also if I delete this line, by default the android calendar is set to DAILY if I don't change it manually.
I have looking for a list off all supported attributes and I have found MONTLY,YEARLY etc. but I can't find the right supported syntax for "one time"
Could you help me?