Michal Klimczak
01/18/2021, 11:31 AMioswrapper
module which is multiplatform
plugins {
kotlin("multiplatform")
id("java-library")
}
2. And then I have a ioswrapper-processor
which depends on ioswrapper
but is pure jvm (because it's an annotation processor based on kotlinpoet).
plugins {
kotlin("jvm")
id("java-library")
}
dependencies {
//... kotlinpoet etc
implementation(project(":ioswrapper"))
}
In Android Studio ioswrapper-processor
classes show lots of Unresolved references...
even though everything builds just fine. This didn't occur when ioswrapper
was a simple jvm module.
Any fixes or workarounds?Michal Klimczak
01/18/2021, 11:46 AMkotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.native.enableDependencyPropagation=false
nrobi
01/18/2021, 12:29 PM