Dokka: Dokka generate R and Buildconfig files in Android

Created on 12 Oct 2017  路  5Comments  路  Source: Kotlin/dokka

Dooka generate documentation for R and buildConfig files, they shouldn't be generate or how to exclude them?
This is the code I am using:

classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.15"

apply plugin: 'org.jetbrains.dokka-android'

dokka {
outputFormat = 'javadoc'
outputDirectory = "$buildDir/dokkaJavaDoc"

// Do not create index pages for empty packages
skipEmptyPackages = true

//Do not output deprecated members. Applies globally, can be overridden by packageOptions
skipDeprecated = false

//No default documentation link to kotlin-stdlib
noStdlibLink = false

}

Most helpful comment

Please, use org.jetbrains.dokka.gradle.DokkaAndroidTask

All 5 comments

Hi, i am using following class path, am using mentioned solution but still dokka is generating comments for android R and third party libraries, any suggestions???

classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.16"
apply plugin: 'org.jetbrains.dokka-android' // dokka documentation/

task dokka(overwrite: true, type: org.jetbrains.dokka.gradle.DokkaTask) {
outputFormat = 'html'
outputDirectory = "$buildDir/dokka"

// Do not create index pages for empty packages
skipEmptyPackages = true

//Do not output deprecated members. Applies globally, can be overridden by packageOptions
skipDeprecated = false

//No default documentation link to kotlin-stdlib
noStdlibLink = false
}

Please, use org.jetbrains.dokka.gradle.DokkaAndroidTask

@semoro

when using DokkaAndroidTask, i got this error.

* What went wrong:
Element 'dokka' of type 'org.jetbrains.dokka.gradle.DokkaTask_Decorated' from container 'org.gradle.kotlin.dsl.TaskContainerScope@43061eb2' cannot be cast to 'org.jetbrains.dokka.gradle.DokkaAndroidTask'.

Version
org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.17

Apparently using "org.jetbrains.dokka:dokka-gradle-plugin:0.10.1" fix the issue.

Still happens with 0.10.1

Was this page helpful?
0 / 5 - 0 ratings

Related issues

juergenzimmermann picture juergenzimmermann  路  3Comments

martinkocjan-tomtom picture martinkocjan-tomtom  路  6Comments

fschoellhammer picture fschoellhammer  路  6Comments

eskatos picture eskatos  路  7Comments

jnizet picture jnizet  路  5Comments