HTC's “fast boot” is not broadcasting BOOT_COMPLETED intent nor wiping intents from alarm manager

后端 未结 2 1257
醉话见心
醉话见心 2020-12-11 04:33

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

相关标签:
2条回答
  • 2020-12-11 05:12

    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" />
    
    0 讨论(0)
  • 2020-12-11 05:16

    try

     <action android:name="android.intent.action.QUICKBOOT_POWERON" />
    

    and

    <action android:name="android.intent.action.QUICKBOOT_POWEROFF" />
    
    0 讨论(0)
提交回复
热议问题