1 min readAug 20, 2018
Nuh,
I cleaned and rebuilt again for good measure but still don’t see the GlideApp object. What is your GitHub handle/username. I’d be happy to share my repository with you! Thank you for the offer.
I have one class GlideModule that uses the annotation and extends the AppGlideModule.
@GlideModule
class GlideModule : AppGlideModule()
Then, I have a separate BindingAdapter file that is currently working as expected to inflate the ImageView’s in my RecyclerAdapter.
@BindingAdapter("imageUrl")
fun ImageView.setImageUrl(url: String?) {
Glide.with(context)
.load(url)
.into(this)
}