Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best json rpc 2.0 library for Android [closed]

I have json rpc 2.0 server written in php. Currently I'm looking for a library that allows auto generation json rpc requests instead of using manual serialization.

I found a bunch of different libraries and really don't know which is more convenient. Did anybody successfully use one?

like image 879
overflowed Avatar asked Jun 14 '13 09:06

overflowed


2 Answers

The best library json I've ever found is JSON-RPC 2.0

For making requests you will need base part of library. But if you want automatically handle server resonces you can take a look at client library. There are pretty much easy to understand tutorials. Hope it will help.

like image 173
Dmitry Guselnikov Avatar answered Nov 20 '22 16:11

Dmitry Guselnikov


android-json-rpc is a pretty simple library. Here is the documentation.

like image 35
valdis.matianus Avatar answered Nov 20 '22 16:11

valdis.matianus