I solve this, check my issue: ADB : unable to connect to 192.168.1.5:5555
The issue was the absence of the correct USB driver for my device. To resolve it:
Download and install the correct USB driver for your device:
For Samsung phones: Samsung Android USB Driver For other Android devices: Google USB Driver If your manufacturer provides a specific driver, download it from their official website. After installing the driver, connect the phone via USB.
On your phone, go to Developer Options and enable USB Debugging. When prompted, authorize debugging on your PC. Check if the device is recognized:
Run the following command in the terminal: adb devices Your device should appear in the list with a serial code. Enable debugging over Wi-Fi:
Run the command in the terminal: adb tcpip 5555 Disconnect the USB cable and connect via IP:
Use the command: adb connect <DEVICE_IP> Your device should now connect successfully. This solution fixed my issue, and I hope it helps other developers facing the same problem!