Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I see gradle tasks run by Android Studio?

I'm following the course "Developing Android Apps" on udacity. I have a problem on Lesson4A with the test suite (TestUtilities) complaining "Task 'cleanTest' not found in root project 'Sunshine'. And then it points me to run with --stacktrace option.

But I don't know how I can run the command on the terminal in the first place. How can I see what gradle-tasks that android studio is running? Thanks :)

like image 533
Dev Doomari Avatar asked Jun 08 '15 08:06

Dev Doomari


1 Answers

At the bottom right corner of Android Studio you have different views:

  • Gradle console
  • Event Log

Additionally, if your Gradle is running, will appear a 3rd one where you can see a progress bar with some information about the process. But if you want a full details use the 2 first views.

like image 128
jgarciabt Avatar answered Sep 29 '22 18:09

jgarciabt