| adb devices |
查看連接設備 |
| adb shell ps |
查看進程 |
| adb shell settings get secure android_id |
android_id |
| adb shell getprop ro.product.model |
查看設備型號 |
| getprop ro.product.cpu.abi |
查看手機CPU 架構類型 |
| adb shell dumpsys iphonesubinfo |
IMEI |
| adb shell ifconfig |
IP地址 |
| adb shell netcfg |
網絡連接狀態 |
| adb shell cat /sys/class/net/wlan0/address |
MAC地址 |
| adb shell cat /proc/cpuinfo |
CPU信息 |
| adb shell cat /proc/meminfo |
內存信息 |
| adb shell cat /system/build.prop |
更多硬件與系統屬性 |
| adb shell getprop ro.debuggable |
查看當前是否是debug模式 |
| adb -s cf27456f shell |
連接指定設備(cf27456f 設備ID) |
| adb install test.apk |
安裝apk |
| adb uninstall cn.com.test.mobile |
指定安裝包卸載應用 |
| adb shell pm list packages |
查看所有app包名 |
| adb shell pm clear cn.com.test.mobile |
清除應用數據與緩存 |
| adb shell screencap -p /sdcard/img.png |
截圖舊 |
| adb exec-out screencap -p > img.png |
截圖新 |
| adb shell screenrecord /sdcard/filename.mp4 |
錄屏 |
| adb shell am start -n cn.com.test.mobile/.ui.SplashActivity |
啟動應用Splash |
| adb shell dumpsys package |
查看包信息Package Information |
| adb shell dumpsys meminfo |
內存使用情況Memory Usage |
| adb shell am force-stop cn.com.test.mobile |
強制停止應用 |
| adb logcat |
查看日志 |
| adb logcat -c |
清除日志 |
| adb reboot |
重啟 |
| adb get-serialno |
獲取序列號 |
| adb bugreport |
查看bug 報告 |
| adb shell wm size |
查看屏幕分辨率 |
| adb shell wm density |
查看屏幕密度 |
| adb shell dumpsys window displays |
顯示屏參數 |
| adb shell getprop ro.build.version.release |
查看系統版本 |
| adb push |
從本地復制文件到設備 |
| adb pull |
從設備復制文件到本地 |
| adb shell am broadcast [options] |
發送廣播 |
| adb shell input keyevent |
模擬鍵盤輸入 |
| adb shell dumpsys battery |
電池狀況 |
| adb help |
查看ADB 幫助 |