10 lines
522 B
Kotlin
10 lines
522 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
|
|
plugins {
|
|
alias(libs.plugins.com.android.application) apply false
|
|
alias(libs.plugins.org.jetbrains.kotlin.android) apply false
|
|
alias(libs.plugins.hilt) apply false
|
|
alias(libs.plugins.ksp) apply false
|
|
alias(libs.plugins.kotlin.serialization) apply false
|
|
}
|
|
true // Needed to make the Suppress annotation work for the plugins block |