I’m making an android application that have an user with a profile image. The obstacle is that when the image is changed on the server side the image’s link remains the same and my app shows an old one.
I asked server developer about it and he said that I can use eTag that changes with an image.
But the main obstacle remain that neither picasso or glide provide methods to work with eTags.
I mean a user’s avatar link remains always the same even if it’s content is changed: http://somehost/users/2/avatar.png
How could I deal with it less painfully? Which frameworks should I use or I’ve to implement this logic manually?