Код: Выделить всё
exclude '**/SampleClass.java'< /code>
exclude '**/com/example/java**'Вопрос : Как исключить/подавить один класс Kotlin/Java с помощью инструмента dokka ?? класс ?
perPackageOption {
matchingRegex.set("com.example.xxx.xxx.package.*")
suppress.set(true)
}
< /code>
Dokka tool ref: https://kotlinlang.org/docs/kotlin-doc.html
Tool configurations: https://kotlin.github.io/dokka/1.5.0/us ... on-options
Подробнее здесь: https://stackoverflow.com/questions/709 ... dokka-tool