Anyone using `externalDocumentationLink` and has i...
# dokka
c
Anyone using
externalDocumentationLink
and has it working? I can't get anything external to link
a
Which version of Dokka?
c
Tried 1.4.10 and 1.4.10.2
a
want to share your setup with me?
I also have https://github.com/chrisbanes/accompanist/pull/151 which updates to 1.4.10.2 and migrates to multi-module. Same thing.
a
I’m using kotlin to configure my project, but one thing I see that is different is the configuration accepts a set of externalDocumentationLinks but maybe that’s what declaring multiple
externalDocumentationLink
blocks in gradle ends up doing
I actually don’t see external links working in my project either (new project so not porting old config)
I’ll file a bug
k
The first thing I notice is the usage of
=
instead of
.set()
, which for some reason doesn’t always work in Groovy, but the main problem here is the use of
sourceSets
closure instead of
dokkaSourceSets
. I’d advise using
kts
build files in which spotting those kind of mistakes is way easier
c
Thanks @Kamil Doległo, that's working now!
🎉 1
k
Great to hear that ☺️