Jake Wharton replied on December 12, 2014 that the best decision for the candidate should be 2.5 steps:
picasso.load('http://example.com/')
.cachePolicy(NO_CACHE, NO_STORE)
.networkPolicy(NO_CACHE, NO_STORE, OFFLINE)
.into(imageView);
enum MemoryPolicy {
NO_CACHE, NO_STORE
}
enum NetworkPolicy {
NO_CACHE, NO_STORE, OFFLINE
}
Update
or now you can use:
Picasso.with(getActivity()).invalidate(file);
mes