问题描述
我正在尝试在IntelliJ IDEA中运行由libGDX实用程序生成的Gradle Android任务(桌面任务运行良好),但是我仅收到此非特定的错误消息。 问题是什么?日志在哪里?如何启用日志?
Information:Gradle: Executing tasks: [:core:assemble, :android:assembleDebug]
Information:24. 10. 2015 16:58 - Compilation completed with 1 error and 0 warnings in 9s 415ms
Error:Gradle: Execution failed for task ':android:proguardDebug'.
> java.io.IOException: Please correct the above warnings first.
PS:如果不知道它是相关的,但我已经修改生成文件和文件ProGuard的描述,以支持斯卡拉 。
1楼
我没有找到从IntelliJ IDEA获取任何有用日志的方法。 我通过从控制台运行Gradle解决了这个问题。
gradlew assemble --stacktrace --info
问题是Gradle无法找到tools.jar
。
添加指向Java SDK目录的系统环境变量JAVA_HOME
可以解决此问题。