Detect If HTC "Fast Boot" Is Enabled
Some HTC phones have a feature called Fast boot (can be enabled under Preferences -> Power). As I have understood it this works like hibernation. When started again no BOOT_COMP
Solution 1:
I would suggest looking into the ACTION_USER_PRESENT
broadcast which is typically sent when the user unlocks the phone. From what I was able to find about the HTC fast-boot
(terrible name, as it conflicts in search results with the regular fastboot
), it is just putting the phone in sleep mode and wakes up to a lock screen.
Another alternative to explore is ACTION_SCREEN_ON
Post a Comment for "Detect If HTC "Fast Boot" Is Enabled"