I facing issue on Glide, which keeps showing the previous image. I came by this post, which use signature()
to solve, but signature()
cannot be solved in my case.
Glide.with(activity)
.load(url)
.signature(new StringSignature (String.valueOf(System.currentTimeMillis())))
.into(imgSignature)
build.gradle
implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'