I want to install jetpack compose in my android project. I was following this guide: https://developer.android.com/jetpack/compose/interop/adding
But when I tried to sync project, I got the error in my gradle file:
A problem occurred evaluating project ':app'.
> plugin id 'org.jetbrains.kotlin:android' is invalid: Plugin id contains invalid char ':' (only ASCII alphanumeric characters, '.', '_' and '-' characters are valid
)
here is the error occurs
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'org.jetbrains.kotlin:android' version '1.5.21'
}
What am i doing wrong?