I want to load the cover art of a Audio/Music file which is present in Internal Storage of the device.
I Only have the path to the file.
This is what I have tried till now-
I have referred this Issue which show the solution.
But I don't know how to exactly create an new Module, as from what information I could gather online is we have to register the Module first then use them
Any one who could guide me on how to register the Module and then load the cover art would be really helpful.
Also I have tried loading the cover art the normal way like but it does not load the cover art.
GlideApp
.with(myFragment)
.load(url)
.centerCrop()
.placeholder(R.drawable.loading_spinner)
.into(myImageView);