Sebastien FERRAND
Sebastien FERRAND

Reputation: 2150

How to show the compile error's details on Android Studio?

I just pulled the code from a fellow developer and get the following error :

enter image description here

I remember Android studio used to be more verbose about the type of problem, but the latest version just give me that generic error.

How can I get more details about this compiling error ?

Upvotes: 10

Views: 25286

Answers (2)

xiaomi
xiaomi

Reputation: 6703

There is a toggle view button into the Build view to see the details.

enter image description here enter image description here

Upvotes: 8

Rohan Pawar
Rohan Pawar

Reputation: 2003

Type below command in the terminal of Android Studio

./gradlew build --stacktrace

Check stack trace you will find the error

Upvotes: 11

Related Questions