JoakimForslund
12/02/2019, 1:36 PMmain
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?Sebastian Sellmair [JB]
12/02/2019, 2:26 PMJoakimForslund
12/02/2019, 2:42 PMSebastian Sellmair [JB]
12/02/2019, 2:49 PM