赞
踩
adb install xxx.apk
adb install -r xxx.apk 覆盖安装
adb install -l 锁定该应用程序
adb install -t 允许测试包
adb install -s 把应用程序安装到sd卡上
adb install -d 允许降级安装
adb install -g 为应用程序授予所有运行时的权限
adb uninstall 包名
pm enable 包名
pm disable 包名
exit
am force-stop 包名
curl 域名
adb shell pm clear 包名
pm grant 包名 相关权限(android.permission.READ_PHONE_STATE)
adb reboot recovery
adb shell input text 内容
adb shell input keyevent 4
拿到全路径之后
adb pull 文件路径 电脑路径
adb push 文件 手机路径
adb shell pm list packages
adb shell pm list packages -f
adb shell am start 包名/完整Activity路径
打开需要获取包名和主activity的APP
adb shell dumpsys window | findstr mCurrentFocus
adb shell screencap /需要存放的路径/
adb shell input keyevent 82
adb shell input swipe 50 250 250 250 500
// 前四个数为坐标点,后面是滑动的时间(单位毫秒)
adb shell input tap 50 250
adb shell wm size
adb shell wm density
adb devices
adb logcat
grep -n '张三' xxx.txt
grep -P '^([0-9]{3}-|\([0-9]{3}\) ) [0-9]{3}-[0-9]{4}$' file.txt
sed -n '10p' xxx.txt
sed -n '3,6p' xxx.txt
adb shell setprop log.tag.TAG V
(TAG为打印日志设置的TAG名称)
input swipe 500 1500 500 500
input swipe 500 500 500 1500
input swipe 900 1500 200 1500
input swipe 200 1500 900 1500
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。