addamsson
02/07/2020, 6:54 PMval global by creating {
// this is a special block for passing perPackageOptions,
// externalDocumentationLinks and sourceLinks to all other platforms
perPackageOption {
// suppress a package on all platforms
prefix = "shouldbesuppressed"
suppress = true
}
}
How do I add external documentation links and source links to other platforms?addamsson
02/07/2020, 7:12 PMKamil Doległo
02/10/2020, 4:52 PMHow do I add external documentation links and source links to other platforms?Like in an ordinary passConfig:
val global by creating {
externalDoculentationLink {
...
}
}
Also is there a way to configure this once for multi-module projects?You can document the whole project (probably) with
subProjects
(dokka option, please note the case sensitivity). If this doesn’t suit your needs, you can use Gradle’s buildSrc
for this (I silently assumed that you use Gradle)addamsson
02/10/2020, 5:41 PMsubProjects
but it doesn't really work (see my other question)