Using Android Studio, where does a compiler error appear?

I am using Android Studio. When I try to start my project, I get a message:

Gradle: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':AsteroidRunnerMultiplayer:compileDebug'. > Compilation failed; see the compiler error output for details. 

It refers to the output of a compiler error, but I cannot find this output anywhere. Where can I understand why my project cannot be built?

+6
source share
1 answer

One thing you can do is disable the external assembly. To do this, click the "compiler settings icon" in the "Messages" panel, which appears when an error occurs. You can also open the compiler settings by selecting "File" → "Settings" → "Compiler".

enter image description here

Uncheck "Use external assembly"

enter image description here

And you will see errors in the console

EDIT: after returning to the “internal assembly” you may get some errors, you can solve them as follows: Android Studio: disable “External assembly” to display the error output create errors of repeating classes

+2
source

Source: https://habr.com/ru/post/946387/


All Articles