I am generating documentation using KDoc/Dokka for an android library.
I have a custom view, which extends LinearLayout
.
The problem is that LinearLayout
contains hundreds of public methods. Dokka generates empty documentation for all of these methods, even though I did not use or override them in my own code.
This completely buries any of my own methods and makes the documentation near useless.
How can I prevent dokka from generating documentation for inherited methods?