Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle Console missing from Intellij Idea

I just started using IntelliJ Idea v15 and after spending a long time in Android Studio I'm feeling a bit lost. Where is the Gradle console window from Android Studio? Is it not implemented? Is there a plugin that adds it?

Here's a screenshot of my IntelliJ15 windows after running a build: enter image description here

like image 258
Cliff Avatar asked Dec 23 '15 01:12

Cliff


People also ask

How do I show Gradle in IntelliJ?

IntelliJ IDEA usually provides lots of different ways to navigate to something we need. To open the Gradle tool window we can: Click on the quick access button in the bottom left, and click Gradle. Or, if you have the Tool Window Bars open already, you can click on the Gradle button in the top right.

Where is Gradle command in IntelliJ?

Press ⌃⌃ (macOS), or Ctrl+Ctrl (Windows/Linux), type "gradle" followed by the gradle task name or names. We can, of course, run Gradle commands from the terminal window inside IntelliJ IDEA. Open this with ⌥F12 (macOS), or Alt+F12 (Windows/Linux).

How do I open the console in Gradle?

Go to Gradle console -> Gradle icon that says Execute Gradle task -> a pop-up opens -> attach your project -> write the task in the second field -> ok. Show activity on this post. Click "View" option top on the Android studio then click "Tool Windows" after "Gradle"; that's it.


2 Answers

I had the same issue. Just close the project and import it again as a gradle project.

Open ... -> choose the build.gradle file of your project.

like image 198
nucatus Avatar answered Sep 30 '22 13:09

nucatus


I also could not make this work - even after reimporting the project (in IntelliJ 2017.1 community edition). However, as a workaround you can switch to text mode:

task mode:

enter image description here

text mode:

enter image description here

like image 34
TmTron Avatar answered Sep 30 '22 14:09

TmTron