gpopides
simon.vergauwen
java.io.Closeable
androidAndJvm
Technically, androidAndJvm is a common platform where the JDK is unavailable. So you can try changing the analysis platform of the corresponding Dokka source set to jvm.
jvm
For example,
```tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
named("androidAndJvmMain") {
platform.set(org.jetbrains.dokka.Platform.jvm)
}
}```
A modern programming language that makes developers happier.