hi there! Im using `Dokka` for documenting my Andr...
# android
t
hi there! Im using
Dokka
for documenting my Android Application and I want to know how to exclude inherited members from class. `supressInheritedMembers`doesn't work. My Gradle Task:
Copy code
tasks.dokkaHtmlMultiModule {
    moduleName.set("")
    moduleVersion.set(appConfig.versionName)
    suppressInheritedMembers.set(true)


    pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
        separateInheritedMembers = true
        customAssets = listOf(file("assets/tez-sat.svg"))
        footerMessage =
            "Tez Sat™ Technical Documentation © ${java.time.Year.now().value} Copyright."
        customStyleSheets =
            listOf(file("$projectDir/logo-style.css"), file("$projectDir/logo-styles.css"))
    }
}
found a solution
🙂 1