Where are Gradle logs?

Android StudioAndroid Gradle-Plugin

Android Studio Problem Overview


Gradle build for an app in Android Studio generates the following error:

Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> java.lang.RuntimeException: failure, see logs for details.
cannot generate view binders com.sun.tools.javac.code.Symbol$CompletionFailure: class file for android.view.View$InvalidateInfo not found

Could anyone offer a tip on where to find the logs?

Initially I thought this was such a rudimentary question that the simple answer would pop up at the top for a quick search, but I failed to find it.

Please note this question is about the logs, not for this specific error. This error message is used just as an example. In case you are curious, this specific error was caused by not using the latest version (23) for compileSdkVersion in the build.gradle.

Android Studio Solutions


Solution 1 - Android Studio

Gradle does not redirect its logs in a separate file in Android Studio.

Therefore if you want to view them in a file, you need to build gradle using a command in the terminal and redirect gradle input to a file.

gradlew build > myLogs.txt 2>&1

This command will redirect all standard output and error messages from gradle build to a file called myLogs.txt in the project folder.

gradlew build > myLogs.txt 2> logErrors.txt

This command will redirect all standard output from Gradle logs to the myLogs.txt and all error messages to logErrors.txt

Tested on Windows 10 and works perfectly.

Here is more information about how to redirect standard output from commands to different files.

Solution 2 - Android Studio

View -> Tool Windows -> Build.

There is small "ab" button on the left panel.

enter image description here

All gradle logs for current build are there.

enter image description here

EDIT: There is new icon from AndroidStudio 3.3

enter image description here

Solution 3 - Android Studio

You can also try running your task like this: > >gradlew --info build

You will get a bunch of useful log information

Solution 4 - Android Studio

In Android Studio 4 (at least 4.2.1 now), both the ab button and the Toggle View button (mentioned in another answer) are gone, so Android Studio doesn't show the logs in the Build View anymore, but if a gradle sync fails, there is a button that brings you to view the idea log outside Android Studio (see the right-most button below), entitled "Show Log in Finder" (at least, in MacOS Android Studio). Show Log in Finder

Solution 5 - Android Studio

In the Windows version of Android Studio, there should be a "Show Log in Explorer" link that will reveal the Gradle log:

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHongView Question on Stackoverflow
Solution 1 - Android StudioKrasimir StoevView Answer on Stackoverflow
Solution 2 - Android StudioashakirovView Answer on Stackoverflow
Solution 3 - Android StudioAjaxian KrasicView Answer on Stackoverflow
Solution 4 - Android Studioauspicious99View Answer on Stackoverflow
Solution 5 - Android StudioMattView Answer on Stackoverflow