cid_app/android/fix-kotlin-warnings.gradle

9 lines
328 B
Groovy
Raw Normal View History

2026-02-27 23:26:13 +01:00
allprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask).configureEach {
// Metodo universale per sopprimere i warning come errori
kotlinOptions {
allWarningsAsErrors = false
freeCompilerArgs += ["-nowarn", "-Xsuppress-version-warnings"]
}
}
}