Hi, I have a compose multiplatform with all the modules enabled. In shared module, android studio or idea doesn't recognize java imports with the error 'Unresolved reference: java'. Gradle seems to compile fine.
s
semenovalexander
07/25/2024, 6:54 AM
You can’t use
java.***
packages in multiplatform module, that is expected. Only Kotlin and shared dependencies.
You can use java classes in JVM source set
k
Klein Reveche
07/25/2024, 7:01 AM
thanks, still new to multiplatform and still leaning the works