I get following error when i download images using Picasso library.
SkImageDecoder::Factory returned null
The code that I'm using is as follows:
Picasso.with(context).load(mySharedPreferences.GetUserCoverImageUrl())
.placeholder(R.drawable.cover_no_img)
.fit()
.into(coverImage_iv);
Can you please suggest the solution? I've googled it but couldn't understand the solution.