November 2017
Intermediate to advanced
378 pages
10h 24m
English
To examine the list of dependencies for the app, open the build.gradle file within the app folder. Among other things, you will find the dependencies for Firebase and JSON deserialization here, as listed next:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
compile 'com.firebase:firebase-client-android:2.5.2+'
}
Within the res folder raw, you will find the canvas.json file. The JSON data in this file will be parsed using Gson
Read now
Unlock full access