mirror of
https://github.com/BetterAndroid/FlexiLocale.git
synced 2025-09-04 02:05:15 +08:00
16 lines
410 B
Plaintext
16 lines
410 B
Plaintext
plugins {
|
|
autowire(libs.plugins.kotlin.jvm) apply false
|
|
}
|
|
|
|
allprojects {
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
freeCompilerArgs = listOf(
|
|
"-Xno-param-assertions",
|
|
"-Xno-call-assertions",
|
|
"-Xno-receiver-assertions"
|
|
)
|
|
}
|
|
}
|
|
} |