How to Use Retrofit for Networking in Android

Making networking calls has never been easier

Dhananjay Trivedi
Better Programming
Published in
3 min readAug 12, 2021

--

Photo by Ludovic Toinel on Unsplash

1. Adding the Dependencies

In your project’s build.gradle

implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.google.code.gson:gson:2.8.7'

--

--