I have this weird ANR keydispatchingtimedout issue after my device goes to sleep and wakes up. Reproducing the bug is kind of difficult since I need 15-20 minutes of sleep to get the ANR. I'm not doing any intensive task in the UI thread. When the device goes to sleep, the app keeps doing some background (threads) work, but nothing else.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You mentioned that you do some async tasks. I had this issue when I was running some network tasks, and when the task returned, the device was in sleep (onPaused called). You might want to handle the task result or cancel the running task in the onPause.
|
|||
|
|