10

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 ?

xiaomi
  • 6,553
  • 3
  • 29
  • 34
Sebastien FERRAND
  • 2,110
  • 2
  • 30
  • 62

2 Answers2

10

Type below command in the terminal of Android Studio

./gradlew build --stacktrace

Check stack trace you will find the error

Rohan Pawar
  • 1,875
  • 22
  • 40
8

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

enter image description here enter image description here

xiaomi
  • 6,553
  • 3
  • 29
  • 34