https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
k

Kurt Renzo Acosta

11/28/2019, 3:24 AM
Anyone having an issue on building an iOS framework on 1.3.60? Having this issue:
Copy code
e: java.lang.IllegalStateException: Could not find serialized descriptor for index: -6614713790654178244 kotlinx.coroutines.internal,<root>,SharedImmutable
I think it's because of coroutines? I'm using 1.3.2-1.3.60 but it doesn't work. Guess I'll be waiting for an official release first. I reverted back to 1.3.50
r

russhwolf

11/28/2019, 5:09 AM
“Could not find serialized descriptor” sounds like a kotlinx.serialization issue. Are you trying to serialize something not marked
@Serializable
?
k

Kurt Renzo Acosta

11/28/2019, 5:10 AM
That was my first thought as well but it's not.
s

sendoav

01/30/2020, 11:10 AM
Did you find a solution to this bug??
k

Kurt Renzo Acosta

01/30/2020, 11:14 AM
Oh yeah. I was using transitive dependencies for it. I disabled it and it worked.
s

sendoav

01/30/2020, 12:04 PM
Umm I’ll try it thanks