sardine

android sardine + httpclientandroidlib -> new package names

只愿长相守 提交于 2020-01-03 05:51:10
问题 I followed the suggestion from https://stackoverflow.com/a/7853412/497102 and I ended up, that sardine is not finding any http classes. Well as http://code.google.com/p/httpclientandroidlib/ says correctly alls package names are renamed from org.apache.http to ch.boye.httpclientandroidlib and therefore Sardine can not find any classes. The stackoverflow thread above is blocked and I need a answer to this, how I can use Sardine in Android App Level: 8, Android 2.2 Thanks 回答1: Looks like the

Using Sardines report method to query events from CalDAV server

房东的猫 提交于 2019-12-24 06:30:01
问题 I'm trying to fetch events from a CalDAV server using Sardine (and biweekly). Fetching an entire calendar is working for me: Sardine sardine = SardineFactory.begin(); InputStream is = sardine.get(CALDAV_URL_STRING); ICalendar iCalendar = Biweekly.parse(is).first(); Now I would like to fetch events for specific time range. Based on this "Building a CalDAV client" article, I assume you should use Sardines report method to do so, right? If so, how should you use that method? It's not documented