Can someone give me step by step guide to add the Gson library to an Android project?
I tried the JSON built-in library but that seems to be a bit tedi
Read Google-gson
Gson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object.
Add the following line to your MODULE LEVEL build.gradle configuration:
dependencies {
implementation 'com.google.code.gson:gson:2.8.5' // Old 2.8.2
}