Martin Dusek
Martin Dusek

Reputation: 1292

Android adb wireless debugging Huawei device

I just purchased Huawei MatePad T8 tablet with Android 10. I enabled developer options and I can debug it via micro USB cable.

I would like to set wireless debugging. I kill adb server, shut down Android Studio and connect my device using USB cable. Then I issue commands:

adb tcpip 5555
adb connect 192.168.1.14:5555

And I get my two adb devices (same device, but once via USB cable and the second one is wireless debugging) succesfully connected to my PC:

adb devices
List of devices attached
8TU9X20428K01472        device

I then disconnect USB cable and then I get:

adb devices
List of devices attached
192.168.1.14:5555       offline

No matter how many times I repeat this process I always get my device offline and I can't wirelessly debug. Tablet's wifi works (I can browse web pages). Can you advise how to enable wireless debugging on Huawei MatePad T8? FYI: I have never had any problem enabling wireless debugging on any device I got in my hand.

Upvotes: 4

Views: 21966

Answers (1)

Ahmed Sabry
Ahmed Sabry

Reputation: 494

I faced the same issue and followed the instructions in this comment (checked Allow ADB debugging in charge only mode) and now I'm able to use wireless ADB after disconnecting the USB

Upvotes: 22

Related Questions