GarouDan
02/12/2019, 4:47 PM4.10.3
too.
It looks like something like this is breaking it:
// Workaround to avoid downloading dependencies every time.
repositories {
mavenLocal().apply {
content {
excludeGroup("Kotlin/Native")
}
}
maven {
url = uri("<https://dl.bintray.com/soywiz/soywiz>")
content {
includeGroup("com.soywiz")
excludeGroup("Kotlin/Native")
}
}
jcenter() {
content {
excludeGroup("Kotlin/Native")
}
}
google().apply {
content {
excludeGroup("Kotlin/Native")
}
}