I cannot get around Unresolved reference (might be...
# multiplatform
m
I cannot get around Unresolved reference (might be related to the issue above, but probably not). in a multimodule project. 1. I have
ioswrapper
module which is multiplatform
Copy code
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).
Copy code
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?
I have
Copy code
kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.native.enableDependencyPropagation=false
n