10 lines
445 B
Kotlin
10 lines
445 B
Kotlin
// Top-level build file. Plugins are declared here `apply false` so their markers are
|
|
// on the classpath and the :build-logic convention plugins can apply them by id.
|
|
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.compose.compiler) apply false
|
|
alias(libs.plugins.kotlin.serialization) apply false
|
|
}
|