adb命令 关机与重启

重启 adb reboot (-n)

关机 adb shell reboot -p


 

 

如果一台电脑连接一台手机,则使用如下命令

adb reboot

如果一台电脑连接多台手机,具体指定哪台手机重启需要指定设备号

adb -s device1 reboot

下面是关机命令

adb shell reboot -p

3) 给设备进行软件的安装

adb -s  install 
eg:
adb -s 99eb07a9 install D://Test.apk

终端中的执行结果为:

 

除了上面这种方法,我们还有另外一个命令:

adb -s  shell pm install [options] 

其中[options]中最常用的选项是-r,代表着本次安装是重新安装,会保留用户数据。

4) 卸载设备中已经安装的软件

adb -s  uninstall 
eg:
adb -s 99eb07a9 uninstall cn.uc.test

 

 

 

 

你可能感兴趣的:(android,studio,Android,eclipse)