seeing this weird issue with compose 1.7.3 and kot...
# multiplatform
s
seeing this weird issue with compose 1.7.3 and kotlin 2.1.10 while running the project on ios platform
Copy code
Uncaught Kotlin exception: kotlin.native.internal.IrLinkageError: Can not read value from backing field of property 'androidx_compose_animation_core_SeekableTransitionState$stable': Private backing field of property declared in module <org.jetbrains.compose.animation:animation-core> can not be accessed in module <org.jetbrains.androidx.navigation:navigation-compose>
can someone help us on this adding
kotlin.native.cacheKind=none
to
gradle.properties
also didn't help
j
Have you tried upgrading to the latest co.pose and navigation versions? Seems like it could be a version mismatch between those
s
Copy code
jbNavigation=2.8.0-alpha10
j
Compose 1.9.0 is stable, and I think navigation is on 2.9.0 now?
Quick google search tells you what the latest is, or just plug it into mavencentral search
s
2.9.0 has a lot of breaking changes which would be difficult migrate at this movement
j
Well migrating off of an alpha version would be your best bet at figuring out this strange issue
s
but hows this related to versions?
j
Vaguely, it looks like something is trying to read a property that's not accessible. That indicates there was a visibility change at some point, and it's not handled by whatever is using it