0

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

Iftekhstudio
  • 17
  • 1
  • 4

1 Answers1

1

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.

ashu
  • 1,756
  • 4
  • 22
  • 41