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. Here are some information on this topic.
So check your code if you’re doing any long-running operations on the UI thread.