This message was deleted.
# community-support
s
This message was deleted.
m
If I slap some
afterEvaluate {}
block there it's all working
v
• find out which plugin adds this configuration => id "x.y.z" • wrap the block in
pluginManager.withPlugin("x.y.z") { ... }
šŸ‘ 1
m
It's in my
build.gradle.kts
Ah, I just got it, sorry
plugins.withId("org.jetbrains.kotlin.multiplatform") {}
it is then
Still feels somewhat suboptimal though?
But I guess there's no way around this. Thanks as always šŸ™
Arg, fun stuff, looks like this is not enough šŸ˜•
v
Hm, if they create that configuration in an
afterEvaluate
block, you should complain to them and probably are left with no other choice than to use
afterEvaluate
yourself and hope for the best.
m
Alright, it's on me. I have to configure the distribution after configuring the
kotlin {}
because otherwise there's no way to tell which targets are present. It's all good šŸ‘ . Thanks for the help!
šŸ‘Œ 1