Kotlin / kotlinx.html

Kotlin DSL for HTML
Apache License 2.0
1.61k stars 132 forks source link

More than one file was found with OS independent path 'META-INF/kotlinx-html.kotlin_module'. #153

Closed mddanishansari closed 4 years ago

mddanishansari commented 4 years ago

I added this dependency in my existing android project like this

implementation 'org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.1'

while building the project I got this error

More than one file was found with OS independent path 'META-INF/kotlinx-html.kotlin_module'.
mddanishansari commented 4 years ago

Downloading library like this, solved the isse

implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.1") {
        exclude group: 'org.jetbrains.kotlinx', module: 'kotlinx-html-common'
}