Hello I’m using the picasso library in my application to retrieve images from backendless.
It goes by.
//get image file from class
String image=class. get(position). getImage();
//then
//Load image using the picasso image retriever
Picasso. with(context). load(“https://api.backendless.com/appID/restApiKey/path/” +image). placeholder(R. mipmap.mipmap1).into(viewHolder.imageView1);
But the image I am trying to load is not loading. Despite the image directory being available inside my directory…
Have I made a mistake somewhere?
I’d like to resolve this issue as soon as possible
Name = kamo