Android Image invalidate in fresco
问题 I am migrating android image caching library from picasso to fresco. I want to know if there is any way to invalidate image already catched as I am adding feature to replace existing image there is way to do so in picasso like Picasso.with(context).invalidate(URI); This line remove the cached image and use new one using the url provided which is same like, http://example.com/image_path In fresco I have tried using Fresco.getImagePipeline().evictFromMemoryCache(uri); This is removing image