I am working with some existing code that makes RxJava/ Retrofit calls to get bunch data using Http calls.
I have a requirement to get full HTTP responses on retail builds. - basically whatever is the webserver response string on the wire. I can get this with Retrofit on debug builds using
RestAdapter.Builder builder = new RestAdapter.Builder()
.setEndpoint(endpoint)
.setLogLevel(RestAdapter.LogLevel.FULL);
I don't know how to get this on retail builds.
I know that we can get this using Volley's StringRequest.
Given that tons of people use RxJava, I am wondering how people deal with this.
Appreciate any help. -Thanks