Error:Execution failed for task ':data:compileReleaseJavaWithJavac'. > Compilation failed; see the compiler error output for details.

转载自:
http://blog.csdn.net/Justin_1107/article/details/71485167
前言
CSDN博客地址 (由于csdn的图片经常出现不显示问题,以后就在写博客了) GitHub由于近期较忙,正加急整理中,敬请期待…

开发中遇到的问题
自从AS升级2.3之后,偶尔遇到一个问题 Error:Execution failed for task ‘:appmain:compileReleaseJavaWithJavac’. Compilation failed; see the compiler error output for details. 并没有提示错误的具体地方,然后查看代码也没有报错的地方

如果你也遇到了相同的问题,有望在1分钟之内找到问题所在,往下读吧
如图:

Error:Execution failed for task ':data:compileReleaseJavaWithJavac'. > Compilation failed; see the compiler error output for details._第1张图片

查阅了很多资料,最后找到了解决方案:
其实是一个很小的问题,只要找到问题所在,就简单多了,具体是:找到AndroidStudio的Tab 其中有一个叫 GradleConsole,打开之后,会显示本次Gradle编译所有的问题,我们也可以点击 Run with –info 这样就可以查看具体的错误所在,然后问题就简单了. 每个人的错误可能不一样,这里就不再赘述了,找到问题所在相信对我们开发来说就不是什么问题了.
这里也吐槽一下AndroidStudio,其实本来是一个小问题,来了一个这样的提示,首先按照正常思路,肯定是某一编译环节出问题,然后上面提示说去output里面查看,然后我去output里面查看了log,发现越走越远,根本找不到问题所在….

Error:Execution failed for task ':data:compileReleaseJavaWithJavac'. > Compilation failed; see the compiler error output for details._第2张图片

ps: 有很多同学可能找不到 GradleConsole,正常情况下 GradleConsole在AndroidStudio的右下角,如果没有的话我们也可以在AndroidStudio的菜单栏点击View – ToolWindows – GradleConsole 把它显示出来
Error:Execution failed for task ':data:compileReleaseJavaWithJavac'. > Compilation failed; see the compiler error output for details._第3张图片

希望这篇文章可以帮助到需要的人,如果还有其他问题或者补充可以联系我~~~

版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(Error:Execution failed for task ':data:compileReleaseJavaWithJavac'. > Compilation failed; see the compiler error output for details.)