[Solved] Android-RESTful Services


There a number of REST libraries that do more or less for you. Arguably, the most popular for Android are Retrofit (https://github.com/square/retrofit) and my personal favourite RoboSpice (https://github.com/stephanenicolas/robospice) for two simple reasons: runs as a service and works alongside Activity lifecycle.

Answering which one is the best would start a flame war.

Keep in mind that ANY library that can do a HTTP request with POST and GET can be “weaponised” as RESTful library, it’s only a matter of how much boilerplate you want to write on your own and how much control over each aspect you require.

solved Android-RESTful Services