如何在关闭一段时间后(例如10分钟后)自动启动任何设备?

时间:2019-08-05 10:54:49

标签: android adb

我正在尝试制作一个计划程序,如果设备关闭,它将启动任何设备。我知道adb-reboot只能重启设备,还有其他一些命令可以关闭设备,但是没有这样的东西可以启动设备。

即使关闭后,android的警报服务也继续运行,这就是为什么警报也会在关闭模式下响起,但我不知道如何即兴启动设备。我们可以做一些调度程序吗?有这个线程https://android.stackexchange.com/questions/54260/what-is-an-alternate-way-to-switch-off-mobile-without-use-of-power-button,我已经检入了三星,小米,摩托罗拉等各种设备,但它们都没有安排电源开/关的选项,也许现在已将其删除了?

这些命令仅用于关闭电源,并且仅适用于有根设备,如以下线程中所述:https://android.stackexchange.com/questions/47989/how-can-i-shutdown-my-android-phone-using-an-adb-command

关闭电源10分钟后,我需要android设备才能启动。

adb shell su -c 'am start -n android/com.android.internal.app.ShutdownActivity'  #alternative; the aforesaid intent is supposed to be passed to this component under normal circumstances, but calling the component alone works too
adb shell su -c 'svc power shutdown'```

0 个答案:

没有答案