Hi, we developed a blackberry application that synchronize events from another custom application into the blackberry.
It works fine.. but we have a problem. The application we sync with already has its own meeting requests system. When an event is synchronized into the blackberry, a meeting has already been sent.. then the Blackberry send it as well. Results.. attendees receive 2 meeting requests.
Code:
BlackBerryEvent event;
...
...
event.addString(BlackBerryEvent.ATTENDEES, Event.ATTR_NONE, sAttendees)
I'm looking for a way to not send meeting requests ONLY for events added by my application.
Anyone has any idea about how to do this?