I am trying to load https images in imageview using Glide. The image is not loading, but if I provide some local image (ex. R.drawable.error_image), it loads.
imagePath = "https://s-media-cache-ak0.pinimg.com/736x/d3/6b/83/d36b83e986e500aa7f39c722970f1f97.jpg"; // Sample image took from internet
Glide.with(this)
.load(imagePath)
.into(landingImage);
compile 'com.github.bumptech.glide:glide:4.0.0-RC0'
I tried to search in SOF also but did't get fix. Give suggestions thanks in advance.