I keep getting this error. Can anyone tell me what it means or how i fix it? Thanks
07-03 08:27:13.615: ERROR/ActivityManager(61): ANR in com.fttech.books
07-03 08:27:13.615: ERROR/ActivityManager(61): Reason: Broadcast of Intent { act=android.intent.action.TIME_TICK flg=0x40000004 (has extras) }
ANR stands for "Application not responding". This message means that your application isn't responsive to the user anymore. Normally this exception is thrown if the UI thread is blocked by an operation that takes more than 5 seconds.
The Android system automatically sends broadcasts when various system events occur, such as when the system switches in and out of airplane mode. The system sends these broadcasts to all apps that are subscribed to receive the event.
Application Not Responding (ANR) errors are triggered when the UI thread of the application is not responding for more than 5 seconds. You can read more about ANRs and diagnosing ANRs in the Android documentation. Additionally, Crashlytics can help pinpoint specific problematic threads.
ANR stands for Application Not Responding. An ANR will occur if you're running a process on the UI thread which takes an extended time, usually around 5 seconds.
ANR stands for "Application not responding". This message means that your application isn't responsive to the user anymore. Normally this exception is thrown if the UI thread is blocked by an operation that takes more than 5 seconds. Here are some information on this topic.
Android applications normally run entirely on a single (i.e. main) thread. This means that anything your application is doing in the main thread that takes a long time to complete can trigger the ANR dialog because your application is not giving itself a chance to handle the input event or Intent broadcast.
So check your code if you're doing any long-running operations on the UI thread.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With