标签:adb
Android原生的模拟器
开始--->运行,输入:android avd
2. 常用的ADB命令
adb -help
adb devices
adb install songshujizhang.apk
adb logcat
日志级别:从低到高
V Verbose(lowest priority)
D Debug
I Info
W Warning
E Error
F Fatal
S Silent(highest priority, on which nothing is ever printed)
下面的过滤语句指显示优先级为warning或更高的日志信息
adb logcat *:W
标签:adb
原文地址:http://11009785.blog.51cto.com/10999785/1951961