gpopides
04/30/2025, 11:53 AMsimon.vergauwen
04/30/2025, 12:09 PMjava.io.Closeable
upperbound constraint.gpopides
04/30/2025, 1:29 PMsimon.vergauwen
04/30/2025, 1:33 PMsimon.vergauwen
04/30/2025, 3:19 PMandroidAndJvm
. (For anyone reading this 👇)
Technically,is a common platform where the JDK is unavailable. So you can try changing the analysis platform of the corresponding Dokka source set toandroidAndJvm
.jvm
For example,
```tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
named("androidAndJvmMain") {
platform.set(org.jetbrains.dokka.Platform.jvm)
}
}
}```