In my android application , i am capturing image from camera and load it with glide. In some devices it is working properly but some devices like LG Q6 , MI note 4 it doesn't load properly. Please check my code and give some solutions.
In Kotlin File :
val imageURL = "/storage/emulated/0/Pictures/1537536635333.jpg"
Glide.with(activity!!)
     .load(imageURL)
     .into(cameraThumbnailIV)
In XML File :
<ImageView
        android:id="@+id/cameraThumbnailIV"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:scaleType="centerCrop"
        android:src="@drawable/photothumbnail" />
				
                        
Your image address is not in app files directory so you have to make sure you have the
READ_EXTERNAL_STORAGEin order to allow Glide to read the image.You can also enable Glide logging to find out the culprit: