Retrofit2 is the second version of the type-safe REST client Retrofit for Android and Java.
I am building a restful client using retrofit in my android app, however i am struggling with an exception while …
android retrofit2 okhttp socket-timeout-exceptionI built my Retrofit instance like this: Retrofit retrofit = new Retrofit.Builder() .baseUrl(server.url("/")) .addConverterFactory(MoshiConverterFactory.create(moshi)) .build(); …
android retrofit2 mockwebserver moshiIn my project (I am using Dagger 2, Retrofit 2 & OkHTTP, RxAndroid) i have 2 different API calls. From one I receive …
android gson retrofit2 dagger-2 simple-xml-converterI am using retrofit 2.x and i want to log the header and body of request and response . HttpLoggingInterceptor interceptor = …
android retrofit android-networking retrofit2I have to send a post request in this format. --__X_PAW_BOUNDARY__ Content-Disposition: form-data; name="user_photo[image]"; …
android retrofit multipartform-data multipart retrofit2I want to fetch XML data from API and map it to Kotlin model object by using Retrofit2 + SimpleXML in …
android kotlin simple-framework retrofit2