mirror of
https://github.com/openflocon/Flocon.git
synced 2026-04-28 08:09:34 +00:00
1.5 KiB
1.5 KiB
🖼️ Downloaded Image Viewer
Flocon captures and displays images downloaded by the Android app, giving you a clear, visual representation of media fetched over the network — such as avatars, product thumbnails, banners, or any other images requested at runtime.
For each image, Flocon shows:
- A live thumbnail preview of the image
- The URL from which it was downloaded
- The download timestamp
This feature is extremely useful for:
- Verifying that images are loading correctly and not broken
- Debugging CDN issues, placeholders, or misconfigured URLs
- Comparing image quality and compression at runtime
- Inspecting lazy loading or image caching behaviors
Whether you're working on UI/UX, performance optimization, or just debugging a missing image, this tool gives you immediate visibility into every image fetched by your app.
Usage with coil
// just add your okhttp client (with the flocon interceptor)
SingletonImageLoader.setSafe {
ImageLoader.Builder(context = context)
.components {
// works also for ktor network fetcher
add(
coil3.network.okhttp.OkHttpNetworkFetcherFactory(
callFactory = {
okHttpClient
},
),
)
}
.build()
}