Hi, I have a compose multiplatform with all the mo...
# multiplatform
k
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
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
thanks, still new to multiplatform and still leaning the works
1