Dokka config: emit a warning for undocumented elements

This commit is contained in:
Benoit Marty 2022-04-21 16:34:36 +02:00 committed by Benoit Marty
parent 96b2254ac1
commit 51f7c68d3f
1 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,15 @@ buildscript {
}
}
dokkaHtml {
dokkaSourceSets {
configureEach {
// Emit warnings about not documented members.
reportUndocumented.set(true)
}
}
}
android {
testOptions.unitTests.includeAndroidResources = true