How to downgrade Kotlin in Intellij 15

For my project, I need to use Kotlin 1.0.0-1038 (beta), but to install it, I probably need to remove the new version of kotlin, but it does not have a delete button where it should be.

How can I lower Kotlin? IntelliJ IDEA 15.0.4

+5
source share
1 answer

IMPORTANT UPD: as @yole commented, this is a bad decision, as it will break the situation. There is no proper way to downgrade a plugin without breaking installation. Instead, consider upgrading your project to the latest version of Kotlin.

You have a plugin bundled with IntelliJ IDEA. At your own risk, you can remove your folder manually from the IntelliJ IDEA installation ( plugins/kotlin ). After that, you can install any compatible version of the plugin from the mail distribution , but your IDEA installation will be violated (see the comment).

0
source

Source: https://habr.com/ru/post/1243932/


All Articles