adb命令使用

comeoncode發表於2024-09-02

1、檢視連線的裝置

adb devices

2、多個裝置下選擇一個裝置進入shell模式(shell模式下,linux的命令都可以用)

adb -s 裝置名 shell

adb -s 192.168.1.2:8888 shell

3、設定tcpid埠號

adb tcpip 8888

4、連線裝置

(1)安卓裝置和電腦在同一個wifi下時,透過ip地址連線

adb connect 192.168.1.2:8888

(2)透過資料線usb除錯連線

5、退出shell模式

exit

6、安裝應用

adb install /Users/yourname/Downloads/abc_Simulation.apk

連線了多個裝置給某個裝置安裝應用時

adb -s 192.168.1.2:8888 install /Users/yourname/Downloads/abc_Simulation.apk

7、檢視裝置上的安裝應用

adb (-s 192.168.1.2:8888) shell pm list package

8、檢視裝置上安裝的第三方應用

adb shell pm list package -3

9、解除安裝應用

adb uninstall com.quark.browser

相關文章