I added package in app gradle following package:
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:glide:4.8.0'
But while run getting below error:
error: package com.bumptech.glide.request.animation does not exist
Anyone faced like this?
GladeAnimation has been replaced by Transition, so now instead of
onResourceReady(GlideDrawable drawable, GlideAnimation<? super GlideDrawable> anim)
you should use
onResourceReady(Drawable drawable, Transition<? super Drawable> transition);
You should check all the different migration changes from the official site.
Cheers!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With