通过ADB启动android.intent.action.BOOT_COMPLETED

时间:2013-07-04 11:17:22

标签: android reboot

是否可以启动该操作: android.intent.action.BOOT_COMPLETED

使用ADB。目前,我需要重新启动设备并等待操作系统广播此消息。如果我能做到这一点而不需要重新启动会很好。

3 个答案:

答案 0 :(得分:2)

adb shell am broadcast -a android.intent.action.BOOT_COMPLETED

答案 1 :(得分:0)

您需要在类名之前指定包名(然后您可以在没有包的情况下编写它),如下所示:

./adb shell am broadcast -a android.intent.action.BOOT_COMPLETED -c android.intent.category.HOME -n net.fstab.checkit_android/.StartupReceiver

答案 2 :(得分:-1)

为什么不自己发送该广播(或者另一个将用于启动接收器的广播)仅用于开发目的,并且一旦您完成了正在开发的任何功能,请删除该呼叫?