Simple Http server that makes simulating API easy.
- Add dependency to build.gradle:
compile 'com.byoutline.androidstubserver:stubserver:1.4.1'
- Create
mock
folder in your assetes directory (src/main/assets
by default in gradle). - Put there a
config.json
file. - You can find
config.json
description at MockServer. - If you have any static content(like images or .html files) put them in
mock/static
folder.
Now you can start server by passing it context and simulated network type:
AndroidStubServer.start(this, NetworkType.EDGE);