android - List adb devices on network -
i have few devices enabled on air debugging. possible list adb devices on network? similar or same effect adb devices
devices enabled on air debugging.
if these steps , run adb devices
command, android device should appear under list of attached devices
. first open command window , make sure either in same directory adb or have adb in path variable. execute following list of commands:
$adb usb restarting in usb mode $ adb devices list of devices attached ######## device $ adb tcpip 5555 restarting in tcp mode port: 5555
get ip address of android device. (usually under system settings network settings, can how ip address on specific device). ip address should 12.34.56.78 (this vary though). once have ip address continue following commands:
$ adb connect 12.34.56.78 connected 12.34.56.78:5555
remove usb cable device
$ adb devices list of devices attached 12.34.56.78:5555 device
Comments
Post a Comment