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
mbonnin
09/29/2020, 7:06 PM
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
faogustavo
09/29/2020, 7:37 PM
So, all modules will “know” the
common
automatically because the “multiplatform” plugin right?