Reputation: 2150
I just pulled the code from a fellow developer and get the following error :
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
Reputation: 6703
There is a toggle view button into the Build view to see the details.
Upvotes: 8
Reputation: 2003
Type below command in the terminal of Android Studio
./gradlew build --stacktrace
Check stack trace you will find the error
Upvotes: 11