I am using Picasso to save a collection of pictures for offline viewing. Later I need to remove some pictures manually from the cache. I can delete all files from folder, but I don't need this. I need to delete 2 or 3 files from the cache. invalidate
doesn't work for me. Can anyone help me?
android delete some pictures from cache Picasso
831 views Asked by d0pestar At
1
You can clear in-memory cache in
Picasso
only per image:Removing all cache is somewhat tricky and described here.
File cache is delegated to HTTP Client, so it's not possible to clear it from Picasso. For more information refer this answer.