Skip to content

Commit e10af97

Browse files
author
Yuriy Elistratov
committed
Build: Fix deprecated kotlinOptions
1 parent 2321fef commit e10af97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

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

0 commit comments

Comments
 (0)