guys I'm adding another module how to separate the...
# multiplatform
u
guys I'm adding another module how to separate their plugins like for android is kotlin("android") and multiplatform is kotlin("multiplatform")
This is my first time adding it
j
You added
kotlin("multiplatform")
twice now. Line 4 and 7 are probably the same, so I'd remove line 7.
K 1
Then, below
jvm("desktop")
you'll need to add
androidTarget()
to tell the Kotlin Multiplatform compiler that you want to compile to the Android target as well.
K 1
u
What about this, it cannot be put it in common root because there's multiplatform and android. How to fix it?