Hi, For now I've implemented almost all the REST GET methods in xwiki-android-client. Translations and some of the Objects method will be implemented as soon as possible. I modified jaxb model classes to work with GSON which is a json deserializer works in Android. xwiki-android-rest is downgraded from android SDK version 2.2 to 2.1.1 for achieving more compatibility with the devices.
Currently I'm having an issue in all the REST requests which has date/time because REST replies date/time as a java.util.GregorianCalendar object with using sun.util.calendar.ZoneInfo as the timezone. Android doesn't have sun.util.calendar library and because of that json objects cannot be deserialize using GSON. Therefore I manually deserialized ZoneInfo content. So now TimeZone data can be added to any other common library which can be used with xwiki as well as Android. Please suggest me such library. Android Xwiki navigator Thomas suggested to make a developer widget which serves as a xwiki-navigator. ( http://developer.android.com/guide/topics/ui/custom-components.html) But these developer widget are only used for designing custom user interfaces and functionality should be added as same as normal android application. So there is no significant advantage of building developer widget. Anyway I'll do it. Best Regards, Chamika Weerasinghe _______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs

