Issue#31 Fix codeAnalysis errors
This commit is contained in:
parent
b29870c90c
commit
bc19355a70
3 changed files with 12 additions and 9 deletions
|
|
@ -8,6 +8,13 @@ subprojects { module ->
|
|||
showStandardStreams true
|
||||
}
|
||||
}
|
||||
module.tasks.configureEach { task ->
|
||||
if (task.taskIdentity.type.toString() == "class org.jetbrains.kotlin.gradle.tasks.KotlinCompile") {
|
||||
task.kotlinOptions {
|
||||
freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
plugins.withId("com.android.application") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue