8

不知道这是否是因为 android-studio 做错了什么,或者只是 intelliJ 中所有 gradle 项目共有的,但有时当我运行构建/调试时,我得到的只是:

Gradle: 
FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':ProjectA:compileDebug'.
> Compilation failed; see the compiler error output for details.

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

我似乎找不到任何方法来获取更多信息,因为该文本已经出现在我认为是编译器输出的内容中。

我应该在哪里看?

4

1 回答 1

1

我为获得更好的信息所做的一件事是通过命令行进入项目根目录并运行

gradlew compileDebug

这确实提供了更多信息,但我不能 100% 确定它运行与 IDE 相同的命令。

于 2013-05-28T07:08:38.660 回答