The ADB instructions
程序员文章站
2023-11-23 17:40:52
adb kill-server 杀死adb服务。 adb start-server 开启adb服务。 adb install xxx.apk 安装应用。 adb uninstall 应用的包名。卸载应用。 adb shell 进入手机的终端。 Pull a file from the device ......
adb kill-server 杀死adb服务。
adb start-server 开启adb服务。
adb install xxx.apk 安装应用。
adb uninstall 应用的包名。卸载应用。
adb shell 进入手机的终端。
pull a file from the device 从设备中拉出一个文件。
push a file onto the device 把一个文件推到当前设备上。
c:\users\administrator\desktop>adb push aa.apk /mnt/sdcard 将aa.apk推到当前设备的/mnt/sdcard目录下。
c:\users\administrator\desktop>adb pull /mnt/sdcard/aa.apk 将/mnt/sdcard/aa.apk拉到桌面上。
下一篇: 简述Python中的面向对象编程的概念
推荐阅读