13 lines
584 B
Plaintext
13 lines
584 B
Plaintext
|
|
// AGP 9 has built-in Kotlin support, so there is no org.jetbrains.kotlin.android
|
||
|
|
// plugin here — applying it is now an error rather than a redundancy.
|
||
|
|
// The Compose compiler plugin is still applied separately.
|
||
|
|
// See https://developer.android.com/build/migrate-to-built-in-kotlin
|
||
|
|
plugins {
|
||
|
|
alias(libs.plugins.android.application) apply false
|
||
|
|
alias(libs.plugins.android.library) apply false
|
||
|
|
alias(libs.plugins.kotlin.jvm) apply false
|
||
|
|
alias(libs.plugins.kotlin.compose) apply false
|
||
|
|
alias(libs.plugins.ksp) apply false
|
||
|
|
alias(libs.plugins.hilt) apply false
|
||
|
|
}
|