Image not loading with Glide, after migrated the server from HTTP to HTTPS. But the images are loaded in Browser correctly.
Dependency:
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
Simple image load:
Glide.with(Context).load(imageUrl).into(imgView);
How can I overcome this??