I'm using Dokka v0.9.17
for Android. When I run ./gradlew dokka
it generates the docs but it include so many packages that I don't care about like android.support.fragment
and packages for all the third party libraries. How can I tell Dokka to only generate doc for my code?
How can I remove Dagger _Factory
files from the doc?
My configuration is like this
dokka {
moduleName = 'app'
outputFormat = 'html'
outputDirectory = "$buildDir/javadoc"
includeNonPublic = true
skipEmptyPackages = true
noStdlibLink = true
}