Before anyone duplicate it. I was using the below code before in v3.7.0 of glide. Now when I have updated it to 4.7.1 it is showing the error: cannot find symbol method crossFade().
I have searched in different places but could not get the code work.
Glide.with(this)
.load(uriProfileImage)
.crossFade()
.bitmapTransform(new CircleTransform(EditProfile.this))
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(changeImage);