Android adb命令日常操作

清除数据 
adb shell pm clear com.icoolme.android.weather
杀进程
adb shell am force-stop com.icoolme.android.weather
卸载
adb uninstall com.icoolme.android.weather
安装
adb install -r -t D:\Project\zuimeiweather\ZuiMeiWeather\app\build\outputs\apk\product\debug\app-product-debug.apk
截图
adb shell screencap -p /sdcard/DCIM/screen.png
发送截图到电脑
adb pull sdcard/DCIM/screenTest.png D:\桌面
打开页面
adb shell am start -n com.icoolme.android.weather/com.easycool.weather.web.ZMWebActivity
打开页面并Intent传参 -e 表示String类型参数 key 为键 value为值
adb shell am start -n com.icoolme.android.weather/com.easycool.weather.web.ZMWebActivity -e key "value"

你可能感兴趣的:(Android adb命令日常操作)