I am using the Glide to display images in my app. Now I want to know the location where the Glide is storing the cached images downloaded from the urls.
I am using below code to display image.
Glide.with(mContext)
.load(mData.get(position).getImage())
.centerCrop()
.override(300, 300)
.placeholder(R.drawable.default_small)
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.into(holder.ivCapturedImage);