android app that already setup to play with elementary parsing JSON without any additional libraries
git clone https://github.com/locovna/i-just-wanna-try-to-parse-f-JSON-in-android.git
- import project (
abitofjson
folder) via Android Studio - change
REQUEST_URL
- implement parsing in
extractSomethingFromJson
//in MainActivity change request url
private static final String REQUEST_URL = "";
//at the bottom of MainActivity you can find method wich you're interested in
private Something extractSomethingFromJson(String somethingJSON) {
...
try {
//replace code here
} catch{...}
}
highly inspired by udacity course