Fast-Android-Networking icon indicating copy to clipboard operation
Fast-Android-Networking copied to clipboard

🚀 A Complete Fast Android Networking Library that also supports HTTP/2 🚀

Results 118 Fast-Android-Networking issues
Sort by recently updated
recently updated
newest added

First of all Thank you very much for such a great libraries and MVP architecture. I have RecyclerView which has posts of my blog. I'm counting my views in onBind...

Main Activity textViewResult=findViewById(R.id.text_view_result); Retrofit retrofit=new Retrofit.Builder() .baseUrl("https://feeds.citibikenyc.com/") .addConverterFactory(GsonConverterFactory.create()) .build(); JsonPlaceHolderApi jsonPlaceHolderApi=retrofit.create(JsonPlaceHolderApi.class); Call call=jsonPlaceHolderApi.getPost(); call.enqueue(new Callback() { @Override public void onResponse(Call call, Response response) { if (!response.isSuccessful()){ textViewResult.setText("code: " + response.code());...

Hi currently I am using kotlin and still trying to find a way to declare `ANRequest.GetRequestBuilder getRequestBuilder = new ANRequest.GetRequestBuilder(ApiEndPoint.BASE_URL + ApiEndPoint.CHECK_FOR_HEADER);` Is there an example to declare it in...

AndroidNetworking.download method is request by GET. Do you have method download by POST? (Add body parameter)

Support multiple Parser converters: - I have 2 api using 2 different converters and the request is ProtoParserFactory and GsonParserFactory. I have a problem when the request to get this...

I am trying to call pixabay api and I'm getting this error. `com.androidnetworking.error.ANError: javax.net.ssl.SSLHandshakeException: Handshake failed` Can you help me solve this? I have done some research and found it's...

When I'm trying to pass a generic object then it is not allowing me to do so. Like in current syntax it can accept 'ApiResponse.class' but not ApiResponse of Books...

Its not working.. Facebook's connection-class library is outdated..

Example: Rx2AndroidNetworking.post(EndPoint.ENDPOINT) .build() .getAsOkHttpResponse(new OkHttpResponseListener() { @Override public void onResponse(Response response) { } @Override public void onError(ANError anError) { } });