Reputation: 1440
I am not able to connect my PC to Android device using adb. I have enabled USB debugging option on the device.
The adb devices
options shows following output
Device Manager output is shown below
What could be going wrong? Any suggestions?
Upvotes: 1
Views: 2194
Reputation: 413
The problem is that your device doesn't provide a serial number. There's a patch out there to fix this, but it hasn't (yet) been integrated into the downloadable tools.
However: you can also use the -d option to adb, which means connect to the "only usb device" ignoring the serial number.
Upvotes: 1
Reputation: 2734
Your command line result shows "? device" which means your device is connected.
Upvotes: 0