I have a problem with glide, when i load image from http it's not working, but if image is from https it work fine:
Glide.with(context).load("http://imageurl").into(holder.foto);
I have a problem with glide, when i load image from http it's not working, but if image is from https it work fine:
Glide.with(context).load("http://imageurl").into(holder.foto);
 
    
     
    
    For security reason, Android doesn't allow some of URL's. Think to add android:usesCleartextTraffic="true" in your manifest file.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
<uses-permission android:name="android.permission.INTERNET"/>
<application
    ...
    android:usesCleartextTraffic="true"
    ...>
    <activity>
    ...
    </activity>
</application>
