Browse Source

Add configuration for suppressKotlinVersionCompatibilityCheck (commented out)

pull/2117/head
Benoit Marty 9 months ago committed by Benoit Marty
parent
commit
05f0f7cf69
  1. 10
      build.gradle.kts

10
build.gradle.kts

@ -100,6 +100,16 @@ allprojects { @@ -100,6 +100,16 @@ allprojects {
// You can override by passing `-PallWarningsAsErrors=true` in the command line
// Or add a line with "allWarningsAsErrors=true" in your ~/.gradle/gradle.properties file
kotlinOptions.allWarningsAsErrors = project.properties["allWarningsAsErrors"] == "true"
kotlinOptions {
// Uncomment to suppress Compose Kotlin compiler compatibility warning
/*
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:suppressKotlinVersionCompatibilityCheck=true"
)
*/
}
}
// Detect unused dependencies

Loading…
Cancel
Save