Reputation: 71
I have made a GUI application in Android, to which I would like to sync with Google Calendar. How could this be done?
Upvotes: 2
Views: 4068
Reputation: 4074
Google has well-documented APIs for its services. You can find the Calendar API here:
http://code.google.com/apis/calendar/data/2.0/developers_guide.html
You might want to also take a look at OAuth as the authentication mechanism, since most users don't like giving out their passwords to apps. Here's a summary I wrote about OAuth on Android:
http://nilvec.com/implementing-client-side-oauth-on-android.html
Happy hacking!
Upvotes: 1