A util class which helps to load redirecting image URLs using Picasso and Jake Wharton's picasso2-okhttp3-downloader.
CustomPicasso.with(context)
.load("http://i.imgur.com/DvpvklR.png")
.into(imageView);
Benefit of singleton approach is to avoid memory leak.
Picasso customPicasso = CustomPicasso.getNewInstance(context);
customPicasso.load("http://i.imgur.com/DvpvklR.png")
.into(imageView);
//After usage call shutdown to avoid memory leak e.g. in onDestroy() of activity
customPicasso.shutdown();