Reputation: 317
I have the calendar.ics file. I have to read that file from my application and transfer the data in to Google calendar in android. I am new to android. I need some help to do this.Can anyone help me to do this?
Upvotes: 0
Views: 5569
Reputation: 1006554
The calendar application that is part of the Android open source project is not part of the Android SDK. Some devices will not have it installed, and the application may change in future releases of Android.
Hence, you need to use the appropriate Google Calendar GData APIs, no different than you would for working with a Google Calendar anywhere else.
With respect to parsing iCalendar files in Java, see this other StackOverflow question.
Upvotes: 1