I have the android development tools running on my mac, and I need to build a project using JSON-RPC.
I'm using this library: http://software.dzhuvinov.com/json-rpc-2.0-client.html
I take the following steps: - Download both the client and base jar file. - Drag them into the libs folder. - Paste the sample code from the site in to the main activity's onCreate function.
After that I run the test app in the simulator, which produces the following error message:
12-08 17:41:40.271: E/AndroidRuntime(2119): java.lang.NoClassDefFoundError: com.thetransactioncompany.jsonrpc2.JSONRPC2Request
What am I doing wrong?