views:

94

answers:

1

Dear,

i want to add, delete, update mobile Calendar events. may i use gdata for it. if yes then my code is

public void start() {
        try {
            CalendarService calService = new CalendarService("MyCalendarInter");\\ Line no 1
            CalendarFeed resultFeed = calService.getFeed(new URL("content://calendar/calendars"),
                CalendarFeed.class);
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

i am using gdata 1.41.1 and google android api level 3

exception in line number 1 is

java.lang.VerifyError: com.google.gdata.client.Service

reason of using gdata is http://stackoverflow.com/questions/2713652/android-problem-deleting-event-in-calender

A: 

till now gdata not supported on android. http://code.google.com/p/android-gdata/

no g data libraries available.

Kamran Omar