9

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,463
  • 3
  • 28
  • 34
Sebastien FERRAND
  • 2,060
  • 2
  • 29
  • 58

2 Answers2

9

Type below command in the terminal of Android Studio

./gradlew build --stacktrace

Check stack trace you will find the error

Rohan Pawar
  • 2,346
  • 21
  • 38
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,463
  • 3
  • 28
  • 34