Persistence of cached images

After updating my application, the cached images continue to display even though they have been changed in the application. One ideas how to fix this Android specific problem. No problem on iOS.
I know you can ask the user to clear the application cache but I would like this to be done automatically.

1 Like

When replace images, try to change their names, even a lil bit. This way your program wont see those as same images and use cache.

1 Like

Thanks mimostel.
That’s a good idea.
I use the name of the image in my blocks to display pictures in a dynamic way and those name are stored in a fire base. So it is a little bit difficult.

In another way I was thinking to use cloudinary DB to store my pictures ?

I finally solved my problem with cloudinary.
Thanks