-
Android debug via wifi
Android debug via wifi Lấy danh sách thiết bị adb devices -l List of devices attached H7AXB771T321953 device product:WW_Phone model:ASUS_X00ID device:ASUS_X00IDC transport_id:1 Bật debug wifi # This makes the device to start listening for connections on port 5555; adb tcpip 5555 # Look up the device IP address adb shell ifconfig # adb shell netcfg # You can disconnect the USB now # This connects to the server we set up on the device on step 2 adb connect <DEVICE_IP_ADDRESS>:5555 adb connect 192.168.1.22:5555 adb connect 10.10.10.25:5555 # Now you have a device over the network with which you can debug as usual. To switch the server back to the USB…
-
Lỗi ADB không tìm thấy thiết bị hoặc adb server bị killed