Context : I have a root MPP module and many MPP su...
# multiplatform
a
Context : I have a root MPP module and many MPP sub modules. Is it possible to define the targets inside in the root module? Thanks
r
It should work if, instead of
kotlin {}
, you do
extensions,getByType<KotlinMultiplatformExtension>().apply {}
. Otherwise gradle doesn't know how to resolve the plugin API.
a
This worked, thanks a lot @russhwolf!