Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to downgrade Kotlin in Intellij 15

For a project of mine I need to use Kotlin 1.0.0-1038 (beta), but to install it I probably need to uninstall the newer version of kotlin, but it has no uninstall button where it should have.

How would I downgrade Kotlin? IntelliJ IDEA 15.0.4

like image 875
SJ19 Avatar asked Feb 26 '16 10:02

SJ19


1 Answers

IMPORTANT UPD: as @yole commented, this is a bad solution as it will break things. There is no proper way to downgrade a bundled plugin without breaking the installation. Instead, consider upgrading the project to the up-to-date Kotlin version.

You have the plugin bundled with IntelliJ IDEA. On your own risk, you can delete its folder manually from IntelliJ IDEA installation (plugins/kotlin subfolder). After that you will be able to install whatever compatible version of the plugin from zip distribution, but your IDEA installation will be broken (see the comment).

like image 158
hotkey Avatar answered Oct 24 '22 03:10

hotkey