Android Studio 4.0 not showing build error details

Viewed 1489

After upgrading Android Studio version to 4.0 there's no "toggle view" button in the Build Output window that switched to full output. So now there's no way now to see the error details. Is there a way aside from building the app in the terminal to see full error details?

Build output

3 Answers

Android Studio > Preferences > Compiler > Command-line Options: --stacktrace --debug

It may sound ridiculous but I found the message window hided by the width of the Build output. There is an inconspicuous line on the right side. After moving it you can see message output

Related