其他分享
首页 > 其他分享> > 常用ADB命令(暂定)

常用ADB命令(暂定)

作者:互联网

查看adb版本: adb version
获取设备列表及设备状态: adb devices
卸载应用: adb uninstall [-k] <包命>
清除应用数据与缓存: adb shell pm clear <包名>
查看详细应用信息: adb shell dumpsys package <>
查看应用安装路径: adb shell pm path <>
强制停止应用: adb shell am force-stop <>
复制设备里的文件到电脑上面:adb pull <> [电脑的目录]
查看设备信息:adb shell getprop ro.product.model
电池:adb shell dumpsys battery
分辨率:adb shell dumpsys battery
屏幕密度:adb shell wm density
显示屏参数:adb shell dumpsys window displays
Android系统版本:adb shell getprop ro.build.version.release
ip地址:adb shell ifconfig | grep Mask
局域网地址:adb shell ifconfig wlan0
Mac:adb shell cat /sys/class/net/wlan0/address
查看CPU:adb shell cat /proc/cpuinfo
内存信息:adb shell cat /proc/meminfo

启动adb server: adb start-server
停止:adb kill-server

三种设备状态:

需获取root的操作

启动指定的包 adb shell am start -n 包名/类名

启动默认浏览器打开一个网页
adb shell am start -a android.intent.action.VIEW -d http://testerhome.com
先停止目标应用,再启动
adb shell am start -s com.android.camera/.Camera
启动相机
adb shell am start -n com.android.camera/.Camera
启动设置
adb shell am start -n com.android.settings/com.android.settings.Settings
启动Wifi设置
adb shell am start -n com.android.settings/com.android.settings.wifi.WifiSettings
启动蓝牙设置
adb shell am start -n com.android.settings/com.android.settings.bluetooth.BluetoothSettings

标签:常用,shell,start,adb,ADB,android,com,暂定,pm
来源: https://blog.csdn.net/speriuder/article/details/105634505