Skip to content

Commit

Permalink
0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
IdanAizikNissim committed Oct 26, 2024
1 parent f968547 commit 535be69
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import java.lang.System.getenv

plugins {
Expand Down Expand Up @@ -63,9 +62,15 @@ kotlin {
}
}

@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
freeCompilerArgs.add("-Xexpect-actual-classes")
targets.all {
compilations.all {
kotlinOptions {
freeCompilerArgs =
listOf(
"-Xexpect-actual-classes",
)
}
}
}

androidTarget {
Expand Down

0 comments on commit 535be69

Please sign in to comment.