Kamil Kras
Kamil Kras
Where can I find these logs?
Same issue on Realme phones. I think you can force max refresh rate by changing [preferreddisplaymodeid](https://developer.android.com/guide/topics/media/frame-rate#setframerate-vs-preferreddisplaymodeid).
> @timchilds no, we haven't. Upstream Chromium doesn't have such calls btw, but I can take a look if we can use it or not or does it make any...
Any news?
Same behavior on Brave
Using `replaceRoute` instead of `popAndPush` seems to fix the issue.
I think we **all** need this.
I don't see anything like that, `DiskCache.Builder` only allows changing `directory` or `fileSystem`.
Workaround: ```kotlin val uri = context.imageLoader.diskCache?.openSnapshot("https://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png")?.use { snapshot -> val newFile = File.createTempFile("shareImage", ".png", File(context.cacheDir, "/image_cache")) snapshot.data.toFile().copyTo(newFile, true) FileProvider.getUriForFile(context, "pl.vemu.zsme.fileprovider", newFile) } ```