标签:
ADB :android debug bridge 建立手机与电脑直接的连接 adb运行的端口号是5037
环境变量的配置:C:\kaifa\adt-bundle-windows-x86_64_20140101\sdk\platform-tools
1.adb devices :列出当前电脑所连接的android设备
2.adb push pc_path phone_path :将电脑端文件放到手机端
3.adb pull phone_paht pc_path :将手机端文件拉到电脑端
4.adb install [-r] apkpath ; 安装一个电脑端的apk文件。-r:强制安装
5.adb uninstall packagename; 卸载一个应用
//三个指令联合使用来解决adb被占用,或断开连接的情况
6.adb kill-server : 结束adb服务的链接
7.adb start-server :开启adb服务的链接
8.netstat -oan 查看端口: 查看端口
9.adb shell:进入当前设备linux环境下
10.adb shell + ls -l :查看当前设备的目录结构
11.adb shell+ logcat :查看系统运行中的日志信息
注意: 如果当前电脑链接的是多台android设备,需要指定操作的是哪台设备,需要在adb后加 -s 设备序列号。
标签:
原文地址:http://www.cnblogs.com/xufengyuan/p/5645160.html