1. How do I define that a module is jvm/native/js ...
# multiplatform
f
2. How do I define that a module is jvm/native/js in the project architecture created by intellij? They are defined by some naming convention too?
m
If you apply the multiplatform plugin, your module will be "multiplatform" and can add targets for JVM/native/JS. Each target will have it's own sourceSet with
commonMain
being the shared sourceSet
f
So, all modules will “know” the
common
automatically because the “multiplatform” plugin right?