What I am trying to do::
I am trying to learn the usage of Okhttp for making networking calls in android
What I have done
You only need to replace: This:
Response response = client.execute(request);
By:
Response response = client.newCall(request).execute();