wasp
wasp copied to clipboard
Compact and easy to use, 'all-in-one' android network solution
I'm noticing these in my console on occasion: `W/OkHttpClient: A connection to http://10.0.2.2:3000/ was leaked. Did you forget to close a response body?` Looks like there might need to be...
My service interface looks like this: ``` public interface IMyService { @GET("/myOperation") Entitiy[] myOperation(); } ``` I build the service like this: ``` new Wasp.Builder(context) .setEndpoint(MY_ENDPOINT) .setParser(new MyGsonParser()) .setRequestInterceptor(new MyRequestInterceptor(context))...
Hello! My name is Maheetha, and I'm a student at a lab at Stanford trying to use WASP for allele-specific expression purposes. I have a couple of bugs that I...
Greetings Im following the doc about the sync request https://github.com/orhanobut/wasp/wiki/Sync-Request is working. But I cant figure it out how to handle the try/catch properly. First I realize that any error...
Hello, Is there a way I could dynamically set the endpoint instead of hard coded base url? Like @Url annotation? I see setEndpoint is not optional.
Greetings At first I thought error 0 was no internet connection cause I had it when I test my app in offline mode. But now Im getting while connected to...
Greetings We are having problems with the error 0. We cant figure it out what it is. So Im trying to implement New Relic, especifically this: `NewRelic.noticeNetworkFailure(String url, String httpMethod,...
This library (like many others) currently relies on the `mxciaoke` fork of volley. There is now a [Google published version](https://bintray.com/android/android-utils/com.android.volley.volley/view) of the Volley library. This is not a fork (unlike...
EDIT: **This is working perfectly I was misslead by the backend response, please dont take this in consideration. Thanks for your time and sorry for such naive mistake.** --- I...