Bryan Gentry
Bryan Gentry

Reputation: 873

USB Debugging not working, adb ignores Nexus 7

For several weeks, I was able to connect my Nexus 7 2 to my computer running Windows 7, and Eclipse would recognize it, allowing me to run apps on it. The device also showed up when I ran the adb devices command. Every time I plugged the Nexus 7 into the computer, the tablet asked if I wanted to allow USB debugging at that time. (Oddly, it never asked me whether I wanted to always allow it from that computer, but I didn't care.)

I recently updated the tablet to Android 4.4.2. I also updated the Android SDKs through the Android SDK manager. Now, when I plug the tablet in, I do not get prompt about USB debugging on the tablet, and neither Eclipse nor adb can see that it is there.

Here is a list of things I tried to do, gathering ideas from various forums around the web.

None of this worked. Any other ideas on what to try?

Upvotes: 10

Views: 54495

Answers (8)

Jimmy Ilenloa
Jimmy Ilenloa

Reputation: 2009

Before you try anything, make sure you update your Build related tools using your Android SDK Manager. Your adb might be outdated.

Upvotes: 0

msysmilu
msysmilu

Reputation: 2024

Complete checklist:

  1. Enable debugging onto the device
  2. Select USB Connection as PTP (camera)
  3. Install the driver from http://developer.android.com/sdk/win-usb.html

Upvotes: 1

VSR
VSR

Reputation: 11

thank you Arthur, I found Nexus 7 tab not working even after unchecking or checking. Problem solved by unchecking USB Debugging (under developer options).. settings>Developer option> USB debugging. then check (put tick the MTP device):.storage->USB computer connections and than tick 'Media device(MTP)

Upvotes: 1

user3661946
user3661946

Reputation: 21

The problem is that you have not all needed drivers (PC can recognise your phone like usb device but debugging would not work). I solved this problem in Android 4.4.4 by uncheking all items (MTP, PTP, UMS) from menu: storage->USB computer connections and than tick 'Media device(MTP). Now all works fine.

Upvotes: 2

Artur Poznański
Artur Poznański

Reputation: 931

Nexus 7 tablet with Android 4.4.4. Settings > Storage > USB Computer Condition. Two checkboxes: MTP and PTP. Uncheck both.

Upvotes: 12

android developer
android developer

Reputation: 51

For me, after updating to Android 4.4.2, it was critical that I connected the device as a Camera (PTP) rather than as a Media Device (MTP). Previously, before the update, I was able to connect as a Media Device (MTP).

Upvotes: 5

user3512646
user3512646

Reputation: 51

With your phone disconnected

In windows explorer - right click computer, go to manage, in computer management find and uinstall device driver (under Android device)

Download new drivers from http://developer.android.com/sdk/win-usb.html#top

Connect the phone, windows will try to install new drivers, install drivers manually with drivers downloaded as above

The above worked for me

Upvotes: 5

Bryan Gentry
Bryan Gentry

Reputation: 873

It turns out that the Nexus 7 definitely needs the Google USB Driver. Finding, downloading, and installing this driver worked perfectly.

Because Google's Android OEM drivers page does not include the Nexus 7 in its list of devices that need the Google USB driver, I had been trying the driver from Asus, which did not work. I did not try the Google USB driver because for some reason my SDK manager said it had downloaded the driver, but the driver was not to be found.

Finally I found I could download the Google USB driver from this page, which clarifies that all Google Nexus devices need this driver. Now I have successfully re-connected the tablet to ADB.

I submitted a documentation bug report to Google here in hopes that the OEM drivers page can be updated to reflect that all Google Nexus devices need the Google USB driver.

Upvotes: 17

Related Questions