is there a way for me to ignore experimental warni...
# announcements
w
is there a way for me to ignore experimental warnings for the entire project through the top level
build.gradle
?
w
thank you!!!
this looks like a specific submodule unfortunately
a
tasks.withType<KotlinCompile> { kotlinOptions { freeCompilerArguments += listOf("-Xopt-in=kotlin.ExperimentalStdLib",...) } }
Will apply to all the tasks with KotlinCompile type
b
You can also apply that to all modules in allprojects lambda on root project