I'm using a u2020 like "debug drawer" and I want to add a button to "disable caching". Where would be the best place to do that? Options I'm considering:
1. Interceptor you can enable/disable that will remove the "If-none-match" header from a request (we are using Etags for caching)
2. Just a button that'll clear all cache in cache directory
3. Use
Request.Builder()\ .cacheControl(new CacheControl.Builder().noCache().build())\
but I'm not sure how to best incorp that with retrofit