How to hot reboot android device
Does anyone know the command to hot reboot that you would use in the terminal emeulator? Would it be a command similar to the t开发者_如何学Che normal reboot commands. If anyone could help thankx.
Probably depends on what do you mean by hot. Anyway, you can use:
$ adb -s <SERIALNO> reboot
or
$ adb -s <SERIALNO> shell 'stop; sleep 5; start'
精彩评论