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:\下载\ZuimeiWeather_Product_01004_20220811_04055.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传参
adb shell am start -n com.icoolme.android.weather/com.easycool.weather.web.ZMWebActivity -e key "value"

启动时间
adb shell am start -W com.icoolme.android.weather/com.icoolme.android.weather.activity.SmartWeatherActivity

你可能感兴趣的:(adb命令)