Colin White
Colin White
I published a modified version of the `package-list` that can be referenced here: https://colinwhite.me/okhttp3-package-list I think this can be solved by adding a step after [here](https://github.com/square/okhttp/blob/4df75dad1ae368b5fb1d04e3c5ccce589e041807/deploy_website.sh#L27) that updates the `package-list`...
@yschimke I don't think so unfortunately. I think it's because OkHttp builds the docs using GFM and then mkdocs uses those files to create a static site. The `package-list` still...
For anyone looking for a way to automatically upload their maps in the interim, add this to your `build.gradle`: ```groovy afterEvaluate { assembleRelease.doLast { exec { def accessToken = "asdfgh123456"...
I agree this would be nice to have. Ideally, `HttpUriFetcher` should reference count the number of responses waiting for its network request. We probably can't merge requests that only share...
Thinking about this more we should also provide a configurable "keep alive" duration for network requests. That way the user can configure how long to wait before cancelling a network...
I think this is probably best fit as an external library or a custom implementation. It should be possible to implement something like this using a custom interceptor and wrapping...
Does this fail with any usage of `ContextCompat.checkSelfPermission`? Also does it work with Coil `2.2.0`? Coil bumped compile SDK to 33 in `2.2.1`.
Is there any work-around for this?
I'd like to add this eventually as part of supporting chaining requests (similar to this issue https://github.com/coil-kt/coil/issues/27). I haven't settled on an API yet, though.
The complexity of caching across multiple directories is pretty high and isn’t likely to be implemented. Seems like we could also work around this limitation by supporting [short file names](https://serverfault.com/questions/529786/fat32-limit-on-total-length-of-all-filenames-in-a-directory-combined/1013729#1013729)....