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
JSON
Use gradle dependencies to get the Gson in your project. Your application build.gradle should look like this-
dependencies { implementation 'com.google.code.gson:gson:2.8.2' }