According to the documentation ,
The internal cache factory places the disk cache in your application's internal cache directory and sets a maximum size of 250MB.
As I am trying to implement some offline features in my apps, it possibly require cache size larger than 250MB. So does Glide allow to modify the cache size or I need to find out an alternative way of doing this? If so, what mechanism should I follow?
I have seen in the documentation an approach to increase that.
builder.setDiskCache(
new InternalCacheDiskCacheFactory(context, yourSizeInBytes));
How do I implement that in my code?
See here.
You can apply in this your project like below:
and then in your manifest add it like this