I want to play video via Glide by load image from URL to image view. , I try to refresh the image by calling to the same URL with the following code:
Glide.with(context)
.load(imageUrl)
.apply(RequestOptions.skipMemoryCacheOf(true))
.apply(RequestOptions.diskCacheStrategyOf(DiskCacheStrategy.NONE))
.into(imageView);
How to do it in loop??? always I get an exceptions