https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
b

baxter

01/26/2020, 10:43 PM
Hi! I'm working on a MPP library, but wondering if there is some standard practice yet on having a pure Kotlin/MPP module with Jvm pure sources and Android specific sources. My current setup is Kotlin/MPP module with pure Jvm sources, and a second module for the Android sources. If this is the current standard practice... sweet! If not, I would appreciate any enlightenment! Thanks!
k

Kris Wong

01/27/2020, 2:02 PM
you can't apply both the java and android plugins to the same module, last I heard, so you would need 2 modules
b

baxter

01/27/2020, 2:55 PM
That's what I thought, but with things changing so quickly, I just wanted to be sure. Thank you!