Skip to content

Commit

Permalink
Add actual classes free compiler arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jan 7, 2024
1 parent bab9e68 commit f3c9cc8
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions coil3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ kotlin {
}
}
}

targets.configureEach {
compilations.configureEach {
compilerOptions.configure {
// https://youtrack.jetbrains.com/issue/KT-61573
freeCompilerArgs.add("-Xexpect-actual-classes")
}
}
}
}

android {
Expand Down
9 changes: 9 additions & 0 deletions landscapist-animation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ kotlin {
}
}
}

targets.configureEach {
compilations.configureEach {
compilerOptions.configure {
// https://youtrack.jetbrains.com/issue/KT-61573
freeCompilerArgs.add("-Xexpect-actual-classes")
}
}
}
}

android {
Expand Down
9 changes: 9 additions & 0 deletions landscapist-palette/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ kotlin {
}
}
}

targets.configureEach {
compilations.configureEach {
compilerOptions.configure {
// https://youtrack.jetbrains.com/issue/KT-61573
freeCompilerArgs.add("-Xexpect-actual-classes")
}
}
}
}

android {
Expand Down
9 changes: 9 additions & 0 deletions landscapist-placeholder/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ kotlin {
}
}
}

targets.configureEach {
compilations.configureEach {
compilerOptions.configure {
// https://youtrack.jetbrains.com/issue/KT-61573
freeCompilerArgs.add("-Xexpect-actual-classes")
}
}
}
}

android {
Expand Down

0 comments on commit f3c9cc8

Please sign in to comment.