DEV Community

Robin Alex Panicker
Robin Alex Panicker

Posted on • Updated on

Detecting and fixing ANR in android apps

To fix ANR issues, the most effective way is to make sure all the resource intensive operations, especially those that are expected to take more than 16 milli seconds per frame be delegated to worker threads.

Read more on how to detect and fix ANR in android apps here - https://www.blog.finotes.com/post/how-to-detect-and-fix-anr-in-android-apps

Update: A new blog on the topic is available at https://www.blog.finotes.com/post/detecting-and-fixing-anr-in-android-apps. This provides more insights into how to pinpoint the exact root cause of ANR in android apps.

Top comments (0)