Like ```plugins { id("com.android.application"...
# gradle
b
Like
Copy code
plugins {
    id("com.android.application") version "4.0.1" //works
    kotlin("android") version "$kotlin_version" //doesn't work, I've tried everything
}
🧵 1
j
I think you don't need to set the version to
kotlin("android")
b
Seems like I do tho because otherwise its not sure what version of Kotlin to use
seems like I can specify plugin versions in
settings.gradle.kts
Like:
Copy code
pluginManagement {
    plugins{
        kotlin("android") version "1.4.10"
    }
}
j
b
That uses the older plugin system
j
plugins { ... id 'kotlin-android' }
b
Try doing that using Gradle's newer plugin system
thanks for the help btw
👍 1