We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Private members don't show up in the HTML output even if it's enabled.
To Reproduce I am using gradel groovy.
Dokka configuration
// Dokka source set configuration tasks.withType(DokkaTask.class).configureEach { // Dokka plugin options String dokkaBaseConfiguration = """ { "footerMessage": "(c) 2025 Company" } """ pluginsMapConfiguration.set(["org.jetbrains.dokka.base.DokkaBase": dokkaBaseConfiguration]) dokkaSourceSets { named("main") { moduleName.set("AudiOn") includes.from("docs/packages_overview.md") sourceLink { localDirectory.set(file("src/main/java/com/globaldelight/audiorecorder")) remoteUrl.set(URL("https://developer.android.com/reference/")) remoteLineSuffix.set("#L") } // Enable inclusion of non-public (e.g., private, protected) members includeNonPublic = true // Allow documenting private members by setting the visibility level documentedVisibilities = [DokkaConfiguration.Visibility.PRIVATE] // Additional configuration skipDeprecated = true reportUndocumented = true } } outputDirectory.set(file("$buildDir/documentation")) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Private members don't show up in the HTML output even if it's enabled.
To Reproduce
I am using gradel groovy.
Dokka configuration
The text was updated successfully, but these errors were encountered: