Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot see Nexus 6P for debugging

I'm using Windows 10, a Dell XPS 13, and v1.4.1 of Android Studio. I have SDK Tools 24.4.1 installed as well as Google USB Driver 11. # On the phone I have USB debugging enabled and can see the device in File Explorer (i.e. documents, pictures, etc.).

But the device never shows up using adb devices, nor in Android Studio.

I've never had this much trouble getting an Android device debugging before, but I don't know if it's Marshmallow or the Nexus 6P that's to blame. More importantly, I've no idea what to do at this point to get it debugging.

like image 503
Bungles Avatar asked Nov 17 '15 01:11

Bungles


People also ask

Why is my USB debugging not working?

Set the appropriate option in Settings or Developer Options. Make sure your Android device is enabled for USB debugging. On many Android devices, you can verify whether USB debugging is enabled by visiting the Settings|Developer Options page. Install the USB driver for your Android device.

How to connect Nexus 6P to PC?

Connect your Nexus 6P to your computer via a USB port (keep it set on Charging mode). 2. Click on the USB devices icon in your status bar (near the clock). It's the USB graphic with the green check mark.


2 Answers

I spent a lot of time with this problem. You need to manually download the driver here (http://developer.android.com/sdk/win-usb.html)

Then go to "Devices and Printers", right-click on "MTP", and choose properties.

Click "ADB interface", then click "Properties"

Go to "Driver" tab and update driver with the file you just downloaded. (Make sure you unzip them first)

like image 98
cid Avatar answered Sep 30 '22 06:09

cid


I had this exact problem and solved it by downloading (http://developer.android.com/sdk/win-usb.html) and installing the Google USB Driver by hand.

Before I did that, I tried installing it from the Android SDK Manager which did not work. The package installed without error but my Device Manager showed a failure for an ADB Interface device.

After downloading/extracting the zip file from the above link, I updated the failed ADB Interface driver in Device Manager and now I can see and use my phone in both Android Studio and from the command line with adb.

I'm assuming that you have also enabled USB Debugging on your phone as detailed here: http://developer.android.com/training/basics/firstapp/running-app.html#RealDevice

like image 44
fharju Avatar answered Sep 30 '22 06:09

fharju