We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0bd637 commit b467082Copy full SHA for b467082
multiplatform-markdown-renderer/build.gradle.kts
@@ -32,6 +32,10 @@ android {
32
targetCompatibility = JavaVersion.VERSION_11
33
}
34
35
+ composeOptions {
36
+ kotlinCompilerExtensionVersion = Versions.composeCompiler
37
+ }
38
+
39
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
40
kotlinOptions.jvmTarget = "11"
41
@@ -138,7 +142,10 @@ dependencies {
138
142
commonMainCompileOnly(compose.ui)
139
143
commonMainCompileOnly(compose.foundation)
140
144
141
- "androidMainImplementation"(Deps.Compose.coilCompose)
145
+ "androidMainImplementation"(Deps.Compose.coilCompose) {
146
+ exclude("androidx.compose.foundation")
147
+ exclude("androidx.compose.ui")
148
149
150
151
tasks.dokkaHtml.configure {
0 commit comments