It looks like something about an instabug library is trying to draw the contents of your window from off of the window's UI thread; I see it getting dispatched from what looks like a HandlerThread in there
Adam Powell
07/01/2022, 1:19 PM
That's always going to be unsafe on Android with or without compose; you need to configure that library to not do that
Adam Powell
07/01/2022, 1:20 PM
It looks like it's trying to draw the window contents after receiving a PixelCopy result, which generally means you are getting a bitmap output delivered to you. I'm not sure why it would be trying to draw additional content at that point if it already is receiving that bitmap
d
Dean Djermanović
07/01/2022, 1:26 PM
I’ve verified that issue doesn’t occur when I disable Instabug. Thank you, I’ll look into this further.