IntellJ IDEA Kotlin Plugin - "No Configurators Available"

I'm having problems using the Kotlin plugin in IntelliJ IDEA. Firstly, after opening the kotlin project, it appears that I need to configure Kotlin in this project. But when I do this in the Tools menu, it says “there are no configurators available”

+8
source share
4 answers

I realized that the problem is that my Gradle plugin is disabled.

+3
source

I had the same problem in Android Studio 3.0 Canary 1. Cineal build, Synchronize, Invalidate Caches and Restart did not help.

The only thing that worked was to make changes to the build.gradle file and click "Sync Now."

+9
source

This happened to me with Kotlin 1.3 and IntelliJ 2018.2.6.

I tried all the solutions listed above - none of them worked until I actually deleted the .idea folder and .iml file from my grad Kotlin project directory and then re-imported them into IDEA, then everything was fine.

+1
source

I had the same issue with one of my Kotlin Gradle projects.
Go to View -> Tool Windows -> Gradle . At the top should be a Reimport all Gradle Projects icon. (Circle with double arrows). Just click on it and it should update your gradle project with Kotlin setup.

0
source

All Articles