William Neely
William Neely

Reputation: 2092

Native USB Debugging on Chrome 32 doesn't detect device

I have a Samsung Galaxy S3. With the release of Chrome 32, I wanted to try the native usb debugging so I could work with my phonegap apps while they're on my phone (rather than browser testing then transferring). I turned on USB debugging and downloaded the appropriate driver. My phone shows up in device manager but it doesn't show up under about:inspect on chrome. How do I get my device to show up?

Upvotes: 20

Views: 16885

Answers (3)

tenderloin
tenderloin

Reputation: 1001

I had a similar issue. I was previously able to inspect my phone using DevTools and the ADB extension. After the Chrome update where the ADB extension was deprecated my phone would no longer appear in chrome://inspect/ not matter what I tried.

What fixed the issue for me:

  1. Download the Android SDK
  2. Locate ADB.exe, found in the platform-tools folder.
  3. Open the file using command prompt

    cd c:\path\to\platform-tools\adb.exe

  4. Make sure your phone is disconnected from USB

  5. Type the following commands

    adb devices

    adb kill-server

    adb start-server

  6. Reconnect your phone, authorise your PC and enjoy the USB debugging

Hopefully that helps someone else.

Upvotes: 63

Paul Irish
Paul Irish

Reputation: 49242

You need Chrome on Android Beta (v32) to do this without ADB.

Upvotes: 1

William Neely
William Neely

Reputation: 2092

I found the solution. I'd never run ADB before but that's what Chrome uses for debugging (not sure if it was downloaded when I downloaded the dev kit or if it came with Chrome 32).

From the command line I ran, adb devices. Got the message "daemon not running. starting it now on port 5037". Once it started, my device showed up in Chrome! If you haven't downloaded the android dev kit you may have to do that first.

Upvotes: 16

Related Questions