adb的配置与使用

来自个人维基
跳转至: 导航搜索

一、配置51android.rules

如果你的系统是10.10,或者11.04(11.10没有测试),则写入下面这句

SUBSYSTEM==”usb”, ATTR{idVendor}==”04e8“, MODE=”0666″

如果你的系统版本是10.04 就改为下面一句

SUBSYSTEM==”usb”, SYSFS{idVendor}==”04e8“, MODE=”0666″


二、一些命令

$:adb logcat -b radio
$:adb logcat -b system

启动app:

$:adb shell am start -n com.android.settings/.wifi.WifiSettings
$:adb shell am start com.android.calculator2

广播Intent

$adb shell "am broadcast -a com.comcat.action.START_SERVER -c com.comcat.category.START_SERVER -e port 21001"
$adb shell am broadcast -a com.android.test --es test_string "this is test string" --ei test_int 100 --ez test_boolean true

说明:test_string为key,this is test string为alue,分别为String类型,int类型,boolean类型


官方文档:

http://developer.android.com/tools/help/adb.html