文章目录

前几天在使用gradle编译项目插件,突然遇到这个错误:

1
2
3
4
5
6
7
8
9
10
FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileReleaseJavaWithJavac'.
> Failed to create MD5 hash for file 'E:\workspace\as\app\libs\xxx.jar'.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

然后在对应目录找了下这个文件,发现没有这个jar文件。于是去build.gradle文件中的depenencies下面找到了这个provided files依赖,然后把这个provided files行删除,然后重新编译就OK了。

发现使用compile filesprovided files引用文件时,如果引用的文件不存,都会报这个错误。删除就好了。

文章目录