Reputation: 17
I'm starting my journey to app development but when I tried to install the android studio I get this error and don't have any idea what is this can anyone help? enter image description here
Upvotes: 0
Views: 60
Reputation: 1836
Looks like you're using an incorrect version of kotlin-gradle-plugin
. Try
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0'
or
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0-RC'
Refer Maven Repository page or Gradle Plugins repository page for a full list of available versions.
Upvotes: 1