What causes an ANR (Application Not Responding)?
- A Blocking the main thread for roughly five seconds or more
- B Using too much memory
- C Too many activities in the back stack
- D A missing permission
Answer
Blocking the main thread for roughly five seconds or more
Database queries, large JSON parsing and disk I/O on the main thread are the usual causes.





