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
Asked
Active
Viewed 45 times
1 Answers
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
-
then how can I sync it again after adding this? – Iftekhstudio May 09 '21 at 19:35
-
See https://stackoverflow.com/questions/29565263/android-studio-how-to-run-gradle-sync-manually – ashu May 10 '21 at 05:24