I am trying to use the Dokka plugin to create a Javadoc for the Kotlin android application. I added a plugin to my gradle:
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.15"
Then I completed the basic configuration of the following project instructions:
dokka { outputFormat = 'javadoc' outputDirectory = "$rootDir/docs" skipEmptyPackages = true noStdlibLink = true }
I am creating documentation using the basic gradle command:
[ user@linux AppDir]$ bash gradlew dokka
The output is fine, but it includes several directories from android or plugins that I added to my project, for example:
android.R android.support com.google com.crashlytics . . . etc.
How to skip these packages? Is there a way to create a dock only for the my / app / scr / java folder and the files I created? Any help is appreciated.
source share