1. 手机端开启adb tcp连接端口,下载android终端app(终端模拟器)
:/$su:/$setprop service.adb.tcp.port 5555 :/$stop adbd :/$start adbd
其中setprop是用来设置系统属性的,这里不需要root权限,su即可。可通过adb shell设置,亦可通过手机上安装的Android terminal设置。
2. 电脑端的设置和使用
连接adb,其中phone_ipaddress和portnumber是指手机的ip和前面设置的监听端口号(如5555)
adb connect phone_ipaddress:portnumber
直接adb shell或adb -s 设备shell连接设备
查看连接:adb devices 或查看Eclipse中的Devices
如若要断开则如下:
adb disconnect phone_ipaddress:port
时间: 2024-10-27 17:19:52