Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

android - BOOT_COMPLETED intent not received on all devices

I have created an application that receives BOOT_COMPLETED within a receiver using the following filter:

<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />

I receive this on one device but I have another device that does not receive this despite using the same APK. What device-specific issues could prevent a particular device from receiving this intent? Is there any way to test for this and create a remedy?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Make sure that you are doing a real full reboot.

Some HTC devices, for example, have a "fast boot" mode that does not trigger BOOT_COMPLETED, but instead sends an android.intent.action.QUICKBOOT_POWERON broadcast. As I understand it, the "fast boot" mode basically does a hibernate, instead of a true power down, and so they don't send BOOT_COMPLETED as a result.

(why the Intent action isn't com.htc.action.QUICKBOOT_POWERON is a whole `nuther issue...)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...