Retrofit is a type-safe REST client for Android and Java by Square, Inc.
I am using retrofit 2.0 and I am implementing a delete feature in my Android app, however, I cannot make it …
java android retrofit retrofit2 http-deleteI want to simulate the no network case when using RetroFit and MockWebServer. Im currently testing using Espresso and supplying …
android retrofit mockwebserverMy requirement is to use PUT, send a header and a body to server which will update something in the …
android retrofit okhttp android-networking androidhttpclientWhile using RxJava and Retrofit 2 I am trying to create Unit Tests to cover when my app receives specific responses. …
android unit-testing mockito retrofit rx-javaI am using Retrofit 2.1.0 and Retrofit SimpleXML Converter 2.1.0. I added simplexmlconverter to retrofit instance with addConverterFactory method. XML is below &…
android xml retrofit retrofit2 simple-frameworkWhat are the benefits to use Schedulers.newThread() vs Schedulers.io() in Retrofit network request. I have seen many examples …
android retrofit rx-java rx-androidI am working on Youtube API. The base URL is <https://www.googleapis.com/youtube/v3/search/> Request :…
android retrofit retrofit2I'm using Retrofit + RxJava on an Android app and am asking myself about how to handle the API pagination to …
android pagination retrofit rx-java