GlideApp not found
Closed this issue · 3 comments
programmermager commented
its only show Glide in import suggestion, not shown GlideApp. i try to use Glide, but the svg image not shown.
Kevinrob commented
GlideApp is generated by Glide if you have a GlideModule.
You can follow the official documentation about this.
This library will add itself to your GlideModule. If you don't have one, the SVG will not work.
Tell me if you need help to configure it.
qhariN commented
How to configure it? pls
Kevinrob commented
Hi @jhormanrus!
As I said, you can follow the official documentation of Glide for configuring Generated API
.
After that, you can use it with:
GlideApp.with(this)
.load(url)
.into(picto_view)