I seem to be encountering an Android Studio issue in a project with MP modules that have android(), jvm(), and ios() targets, and am wondering if anyone else has seen this. Environment is kotlin 1.4.20-RC, gradle 6.7, Android Studio 4.1. Gradle builds of the MP modules in question work fine, so the gradle config is decent. I have an actual class implementation in the jvmMain sourceset that displays in android studio fine, with no errors. The exact same source in androidMain, which gradle also builds fine, shows in Android Studio with every import of a java package as an error. The "java" prefix in each package import is red as if the IDE doesn't see the jdk8 dependency only in the androidMain sourceset. But gradle sees it fine and builds the source with no errors, so the dependencies in the gradle config are corrrect. This doesn't happen in all my Kotlin MP projects, so there is something different about this one that I'm still trying to figure out. The same question with more detail (build.gradle.kts) is on Stack Overflow, at this link:
Stack Overflow question . Thanks in advance for any info.