Gradle tasks are not showing in the gradle tool window in Android Studio 4.2

123.1k views Asked by At

I just updated Android Studio to version 4.2. I was surprised to not see the Gradle tasks in my project.

In the previous version, 4.1.3, I could see the tasks as shown here:

working in version 4.1.3

But now I only see the dependencies in version 4.2:

Not working in 4.2

I tried to clear Android Studio's cache and sync my project again, but there was no change.

Is this a feature change?

8

There are 8 answers

4
LeMimit On BEST ANSWER

OK, I found why I got this behaviour in android studio 4.2.

It is intended behaviour. I found the answer in this post: https://issuetracker.google.com/issues/185420705.

Gradle task list is large and slow to populate in Android projects. This feature by default is disabled for performance reasons. You can re-enable it in: Settings | Experimental | Do not build Gradle task list during Gradle sync.

Reload the Gradle project by clicking the "Sync Project with gradle Files" icon and the tasks will appear.

It could be cool that this experimental change is put in the release note of android studio 4.2.

enter image description here

enter image description here

1
Momina Javed On

Inside your android studio, select File option in toolbar -> then click on Settings option.

  1. From settings, select the last option "Experimental"
  2. Within there, select Uncheck the option that I have shared the screenshot below.
  3. Then click Apply.enter image description here

4. After that, Sync your project again from the file option, over their Sync project with Gradle Files

All set :)

0
Rajesh.k On

Solution 1:

You can alternatively use the below gradle command to get all the tasks and run those in terminal

./gradlew tasks --all

Solution 2.

You can also create run configuration to run the tasks like below:

Step 1:

enter image description here

Step 2:

enter image description here

Step 3:

enter image description here

Then your run configuration will be listed like in step 1 image. You can choose and simply run it as usual.

0
Aliaksei On

Go to File -> Settings -> Experimental and uncheck Do not build Gradle task list during Gradle sync, then sync the project File -> Sync Project with Gradle Files. If the problem is still there, just reboot Android Studio.

1.Do not build Gradle task list during Gradle sync

2. enter image description here

0
Minion On

To check the task list use the below command

./gradlew task

You will get the list of available task. To execute a particular task run command as follow

./gradlew <taskname>
6
Tony On

For Android Studio Electric Eel | 2022.1.1 and later

Update Jun 23rd 2023: the same with Android Studio Flamingo

Go to Settings and uncheck this thing in below picture:

After that, sync your project again enter image description here


UPDATE for Android Studio Giraffe | 2022.3.1 Patch 1

Now, you have to CHECK the following option: (So annoying to the way they changed the UI) enter image description here

0
tech.mohit.garg On

This solution works for me

Go to File -> Settings -> Experimental and uncheck Do not build Gradle task list during Gradle sync, then sync the project File -> Sync Project with Gradle Files.

0
wilfred On

I had a similar issue and I solved it by executing the following terminal command in my Android Studio Terminal:

./gradlew tasks --all