i am trying to load image in glide, in localhost it will load perfectly, when i move to server it will not load how to solve this issue.
code:
Glide.with(mContext)
.load(https://www.server9host.com/ocean/oceans/dashboard/nature.jpg)
.placeholder(R.drawable.defgall)
.error(R.drawable.defgall)
.override(200, 200)
.into(myHolder.onlineimage);