Issue fixed but not updated in gradle version.
Solution 1 :
For now don't use
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
or
.jar file
You can download library as zip and add manually as module.
I am facing same issue, but this is worked in my case.
For file changes you can check this commit: f6a9615
Solution 2 :
You can use this commit using JitPack:
In your build.gradle (app level) file, add:
repositories {
maven { url "https://jitpack.io" }
}
And replace
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
with:
implementation 'com.github.nostra13:Android-Universal-Image-Loader:f6a9615868482672c3630cb7db6dcf43391e80de'