美文网首页
Android adb命令日常操作

Android adb命令日常操作

作者: 苏坡坡要吃婆婆酥 | 来源:发表于2022-08-01 18:29 被阅读0次
清除数据 
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命令日常操作

      本文链接:https://www.haomeiwen.com/subject/wsyjwrtx.html