[android-developers] Re: BroadcastReceiver never getting BOOT_COMPLETED intent

2010-01-13 Thread Ian
My BroadcastReceiver is VERY simple (below) and never runs. I did notice this in the logs: 01-13 08:38:40.550: INFO/ActivityManager(57): Start proc com.boottest for broadcast com.boottest/.BootReceiver: pid=175 uid=10024 gids={} 01-13 08:47:12.633: INFO/dalvikvm(185): Debugger is active Doesn't

[android-developers] Re: BroadcastReceiver never getting BOOT_COMPLETED intent

2010-01-12 Thread Kumar Bibek
Hi, The boot receiver's code should not block for say, more than 5 seconds, else, you get a time out. From your service, whatever you want to do, just spawn a thread. This should solve your problem. Your logcat has a lot of unwanted logs. In your receiver class, try to do some logs. If you see th

[android-developers] Re: BroadcastReceiver never getting BOOT_COMPLETED intent

2010-01-12 Thread Ian
What I see in all my sims when the emulator starts is this pop-up: "process android.process.media is not responding" which I click on "wait" and then the debugger connects to my main Activity. Also, I just reran and saw BOOT_COMPLETED broadcast "timeout": 01-12 21:57:54.916: WARN/Activit