Question, I'm using Kotlin Multiplatform 1.3.50. I'm trying to move away from running android in a multiplatform-library under the folder 
main
 into 
androidMain
I've added this onto the android-library extension:
sourceSets.forEach {
        val root = "src/androidMain/${it.name}"
        val manifestFile = file("src/androidMain/AndroidManifest.xml")
        it.setRoot(root)
        it.java.setSrcDirs(fileTree("${root}/kotlin"))
        it.manifest.srcFile(manifestFile)
    }
 which seems to at least make everything look in the right place. However, now my 
expect/actual
 in my common starts to complain
that it can not find the actual implementation for jvm set up, which is weird, because I have not setup a target for jvm, and the implementation
it should be looking for, does exist within the 
androidMain
 folder, but it does not look for it there, how can I change that?