Can i use gdata for mobile calendar

I want to add, remove, update mobile calendar events. can i use gdata for it. if yes then my code

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 on line 1 -

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

the reason for using gdata is https://stackoverflow.com/questions/2713652/android-problem-deleting-event-in-calender

+2


a source to share


2 answers


gdata is still not supported on android. http://code.google.com/p/android-gdata/



no data libraries available.

0


a source


you can use GoogleApiJavaClient here's why: http://code.google.com/p/gdata-java-client/wiki/MigratingToGoogleApiJavaClient



look here for more resources http://code.google.com/p/google-api-java-client/

0


a source







All Articles