##adb
> adb 占用的端口是5037
> android的调试桥 android debug bridage
> 作用: 在自己的开发设备与运行设备之间建立一座桥梁 , Socket连接
* adb devices
> 列出当前关联的设备
* adb kill-server
> 杀死服务 , 断开连接,停止socket连接
* adb start-server
> 启动服务 ,建立socket连接
* adb install xxx.apk
> 安装apk程序 , 注意安装的时候,最好不要使用中文的名字apk
* adb uninstall 应用程序的包名
> 卸载程序,包名可以通过ddms里面的左边面板查看进程列表。 |
|