android-anr-dialog
Disable ANR messages while debugging
In the Developer Options scroll down to the Debugging section and choose your app in “Select debugging app“. This way it will not trigger any ANR when paused in a breakpoint. The setting value will be remembered even if you remove/reinstall your app. Note that this option may not be available depending on your API … Read more
ANR Input dispatching timed out
This happened to me when I had a loop and there was a condition for the loop to get incremented. I had not set the increment for when the condition was not met. Hence, the loop stalled. This resulted in the above error. Without your code, I cannot help. But the above is a possible … Read more
Android – how do I investigate an ANR?
An ANR happens when some long operation takes place in the “main” thread. This is the event loop thread, and if it is busy, Android cannot process any further GUI events in the application, and thus throws up an ANR dialog. Now, in the trace you posted, the main thread seems to be doing fine, … Read more