Heinrich Goebl
Heinrich Goebl
Hi @jktu2870 can you tell me please why you already closed this PR? I had a short view of the code and it looks good to me, though I haven't...
Seems to be rather complicated (searching StackOverflow e.g.), see - http://stackoverflow.com/a/11927939/2176962 - http://stackoverflow.com/a/8284152/2176962 I haven't tried it, but maybe OkHttp could help you: https://github.com/square/okhttp/wiki/Recipes#canceling-a-call
Currently there is no easy way of getting the progress. It's one of the features I'm thinking about to implement, but not in next future. In the meantime, if it's...
Do you know the length in advance? Then you could have a look at [ProxyInputStream](https://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/input/ProxyInputStream.html) (as an example) and let this stream call you back when bytes are read. Obviously...
If you're just starting a new project, you might consider using [OkHttp](https://square.github.io/okhttp/) instead. AFAIK some Android versions use this as an HttpUrlConnection implementation. This lib could use this natively as...
Sounds like a good idea. I'm willing to accept PRs. Please use `.addMiddleware` instead of `.AddMiddleware`. In TypeScript, JavaScript and Java it's totally uncommon to name methods starting upper-case. Would...
I'll test the impact (especially for non-Android environments) when changing this dependency to `provided`. @MrBrightside29 have you encountered any problems besides this warning? AFAIK Android has an optimized version of...
I'm not sure. Having query-params in URL of POST or PUT request can be useful, but AFAIK there are backend stacks which don't support it. At least for `application/x-www-form-urlencoded` it...
Thanks for doing the workaround. Of course you're right - this is indeed a bug. I'll fix this.
Thank you very much for contributing. I already tried to solve this (see #3), but without luck. When compiling an Android project with your PR, I still get the same...