How do I add gson to my project with gradle? I only see people adding files to their projects. I don\'t want to download the project and put it in mine.
compile is obsolete use implementation instead
compile
implementation
dependencies { implementation 'com.google.code.gson:gson:2.8.5' }
P.S. version of 08/07/2019