Picasso.with(this)
.load(input)
.into(image);
Log .e("input url",input);
I am getting the half of the URL from another activity using getExtra
String urlid =getIntent().getStringExtra("id");
and I am combing the remaining Url with the half I received.
String input = half URL + urlid; (URL I received) To check my URL I am using
Log .e("input url",input);
Which shows my complete URL and is correct. But I am getting the error message as
SkImageDecoder::Factory returned null
Any help or suggestions.