REST-for-Android
A skeleton REST server and Android client. Can be used as a template for building cool stuff.
How to run
$ node app.js
- In android code, navigate to
MainActivityand change theURLvariable so that it points to the server's IP. It should read something like this:
private String URL = "http://<ip-address>:<port-number>/api/capitalize";
That's it!