Using Retrofit 2 and GSON for parsing JSON in Android
We have previously written about parsing JSON in Android without using any libraries in this post. In this one, we will use a library (Retrofit) for doing the same. Retrofit 2 is a HTTP client written in java. It is a type safe library that makes HTTP API calls. You...