I’m trying to add support for iOS in my multiplatf...
# compose-ios
k
I’m trying to add support for iOS in my multiplatform app, whose UI is built with Compose. However, after I had imported the shared module and tried to compile the iOS app, I got the following error:
Copy code
Shortly: The required symbol androidx.compose.runtime/collectAsState|-6899767239674529654[0] is missing in the module or module dependencies.
is there anything obvious I’m missing?
1
o
Do you have
kotlin.native.cacheKind=none
in you gradle.properties?
k
That helped, thank you!