I have a very weird problem, and none of the questions already on the website have an answer or the same problem.
I have an app that receives BOOT_COMPLETED. I made sure it could receive the intent by setting android:installLocation to internalOnly. I have a Log.Debug in my OnBoot class, confirming wether or not it was called.
I have two devices, an Android 2.2, and a Honeycomb. On android 2.2, it works fine, but Honeycomb...
If I install the application on the honeycomb tablet with eclipse's "run" button, onBoot is called when the tablet boots.
If I install the application on the honeycomb tablet after exporting the *.apk file, onBoot is never called.
If I install the application on the honeycomb tablet after exporting the *.apk file, AND manually start an activity before rebooting, onBoot is called.
It seems like the application needs its activity to be started at least once for the receiver to be registered... It doesn't feel right, since an app might have no activity, and the Froyo doesn't work that way...