What is ANR in android?

: 766
Paper : Android Development FAQ (Frequently Asked Questions and answers) | Platform : Apps Development | Category : Development FAQs

ANR is the abbreviation of "Application Not Responding". The message is displayed to the user when the main thread in the application is not responding for the longest time. The conditions when this happens are:

  • When the input event is receiving any response even after 5 seconds.
  • When the broadcast receiver is not executing even after 10 seconds.
Suggested Papers: