Error:Kotlin: Unsupported plugin option: org.jetbrains.kotlin.android:enabled=true

前端 未结 8 1538
逝去的感伤
逝去的感伤 2021-02-02 09:36

Today I receive this error, while exactly same code was working an hour ago

Error:Kotlin: Unsupported plugin option: org.jetbrains.kotlin.android:enable

8条回答
  •  耶瑟儿~
    2021-02-02 10:30

    Android > Preferences... > Plugins

    Check Kotlin version:

    Then on the top-level build.gradle make sure that the version matches:

    buildscript {
        ext.kotlin_version = '1.2.71'
        // ...
    }
    

提交回复
热议问题