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)
}

--

--

Open Sourcer

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store