The ADB instructions
程序员文章站
2022-07-21 20:53:41
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自动重试HTTP连接装饰器
下一篇: PHP文本数据库的搜索方法
推荐阅读