I am making an alarm app but have run into a bit of a problem regarding HTC\'s \"fast boot\" feature. this feature puts the device into a deep hibernation instead of turning
HTC use a slightly different intent also for some devices OS 4.0+ that is different from Android SDK.
<action android:name="com.htc.intent.action.QUICKBOOT_POWEROFF" />
and
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
try
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
and
<action android:name="android.intent.action.QUICKBOOT_POWEROFF" />