I'm attempting to build an Android application that displays Google calendar entries in a list from a public Calendar RSS feed. The Calendar feed is public, but is not shared to any specific user.
I've done just that on the iOS side by using Google's gdata library (in combination with the public Calendar RSS) to parse and display the public calendar feed.
Unfortunately, gdata is not compatible with Android. Google has the new google-api-java-client libraries, but all the sample code is used in tandem with a google account living on the device that then authenticates through OAuth.
Is there any way to grab and parse public feeds with these new libraries without having to store the authentication information on the device? Or even authenticate at all?