ADB 笔记

  • Post author:
  • Post category:其他

cd 到  D:\Android\tools\platform-tools

adb push

将文件从PC写入到设备
adb push
eg:
adb push D:/python_study/Test/test.txt /sdcard/Files
D:/python_study/Test/test.txt: 1 file pushed. 0.0 MB/s (22 bytes in 0.032s)

adb pull

adb pull /sdcard/Files/test.txt D:/python_study/Test/test.txt
adb pull /sdcard/DCLM/zuiyou D:/python_study/Test/zuiyou
/sdcard/server.log: 1 file pulled. 0.0 MB/s (196 bytes in 0.004s)

查看当前连接的设备

adb  devices

将指定的apk文件安装到设备上

adb  install <apk文件路径>
如: adb install com.sina.weibo
参数“-r”,它是更新安装的意思,
参数 -s ,安装到sdcard

卸载软件

adb  uninstall <包名>
如: adb uninstall com.sina.weibo	

启动和关闭server

adb start-server             - ensure that there is a server running
adb kill-server              - kill the server if it is running

获取手机截图

 adb shell screencap /sdcard/Files/a.png

获取手机分辨率

adb shell wm size

查询已连接设备/模拟器

adb devices

查包名应用名

adb shell dumpsys window w |findstr \/ |findstr name=

版权声明:本文为betteryjs原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。