I'm getting a report of a StackOverflowError crash...
# coroutines
e
I'm getting a report of a StackOverflowError crash in an Android app (can't repro locally). It looks like it's coroutines related, but the crash happens in a kotlin.text function. How can I debug something like this?
r
Looks like a recursion issue. Since you haven’t posted any code, I’m just guessing.
e
I don't know where in my code it's coming from (I have 150 modules in this project).
s
Looks like you might be hitting this issue https://github.com/Kotlin/kotlinx.coroutines/issues/2441
e
That looks like it might be it, thanks Shmuel!
👍 1