I have an apk file of an android app, which I convert to a jar file using dex2jar
. Now, I would like to use this jar file in another Android project.
To do so, I use provided files('libs/filename.jar')
in my build.gradle
file. However, when trying to build my Android project I keep getting the following error.
Failed to create MD5 hash for file 'pathToJar'
I am wondering if anyone has any idea why I am getting this error?
The most probable reason for this might be your instant run feature is enabled. You might consider checking if the instant run is enabled. If it is enabled, please disable the instant run and try to build the project again.
Now clean your project and rebuild. Hope that helps!