Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ Gradle project option not showing when creating new project

I am trying setting up a Kotlin/JS for Browser project, but when I open the "New Project"-Window, Gradle Projects are not an option.

New Project

Everywhere I search, it just seems to be there. Also, I wasnt able to find any kind of solution or even mention of the problem.

Example from https://kotlinlang.org/docs/reference/js-project-setup.html

(This is from https://kotlinlang.org/docs/reference/js-project-setup.html how it should look like)

For sure I am just really, really stupid overseeing the most simple thing missing. But as I keep failing, does anybody know how I can include the option for Gradle Projects? Your help would be much appreciated!

-----------------------------------UPDATE----------------------------------------

I reinstalled IntelliJ IDEA and now it is working just fine. I don't know what was the problem, maybe an update went wrong or something. Thank you very much for your answers!

like image 308
TenebraeX8 Avatar asked Sep 07 '25 00:09

TenebraeX8


2 Answers

I had this problem with IDEA 2020.2 on Linux. My New Project window looked just like the OP's. Reinstall didn't fix, but I got the Gradle option to appear by enabling the bundled Android plugin.

like image 75
Karma Arachnid Avatar answered Sep 11 '25 15:09

Karma Arachnid


You need to have Gradle bundled plugin enabled. Make sure you have it enabled in Settings | Plugins. Another indication that it is enabled is the Settings(Preferences) | Build, Execution, Deployment | Build Tools | Gradle page.

like image 33
Andrey Avatar answered Sep 11 '25 15:09

Andrey