https://kotlinlang.org logo
Title
e

eygraber

01/15/2021, 7:52 PM
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

rook

01/15/2021, 9:01 PM
Looks like a recursion issue. Since you haven’t posted any code, I’m just guessing.
e

eygraber

01/17/2021, 1:20 AM
I don't know where in my code it's coming from (I have 150 modules in this project).
s

Shmuel Rosansky [G]

01/17/2021, 5:35 PM
Looks like you might be hitting this issue https://github.com/Kotlin/kotlinx.coroutines/issues/2441
e

eygraber

01/19/2021, 7:58 AM
That looks like it might be it, thanks Shmuel!
👍 1