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拉到桌面上。