app is running in android older version and image showing perfectly but when its running in newer android version it looks blank in the imageview section. I have used Picasso.
String image_url = "http://***.com/uploads/user_photo/" + imagelist.get(position).getUser_photo();
    Picasso.with(context)
          .load(image_url )
          .into(holder.imgView);
 
     
     
     
    