Skip to content

Commit

Permalink
Build: Fix deprecated kotlinOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuriy Elistratov committed Sep 6, 2024
1 parent 2321fef commit e10af97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

subprojects {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions.freeCompilerArgs += listOf(
"-opt-in=com.redmadrobot.debug.core.annotation.DebugPanelInternal"
)
compilerOptions {
freeCompilerArgs.add("-opt-in=com.redmadrobot.debug.core.annotation.DebugPanelInternal")
}
}
}

Expand Down

0 comments on commit e10af97

Please sign in to comment.