Geada734
Geada734

Reputation: 23

Android Studio cannot find any connected device (tried with a few)

I've tried connecting several devices for debugging but Android Studio cannot detect any of them, I've checked that the USB drivers are properly installed, and developer mode properly configured. I know its not a problem with my devices because I've tried them on other computers and they all work properly. Any ideas on what should I do?

Android Studio version: 2.1.2 running on a computer with Windows 8.1

Update: Reinstalling didn't work either

Update 2: After reinstalling all drivers I managed for Android Studio to detect most of my devices, excepting a Lenovo Yoga YT3-850 F tablet with Lollipop (Android 5.1), I tried updating the drivers and reinstalling them to no avail

Upvotes: 2

Views: 455

Answers (2)

Nongthonbam Tonthoi
Nongthonbam Tonthoi

Reputation: 12953

Make sure that your connected device is compatible( min and max api)

Make sure that you have installed the proper driver by the following:

  1. Open the standalone Sdk manager and check if Google Usb Driver is installed or not in the Extras section, if not install it.

  2. Right Click on My Computer -> Manage -> Device Manager

  3. Select your device and right click.

  4. Update Driver Software -> Browse my computer for driver software -> Let me pick from a list of device drivers from my computer -> Next -> Have Disk -> Browse.

  5. Now goto your google usb driver intalled location (its usually C:\Users\USERNAME\AppData\Local\Android\sdk\extras\google\usb_driver) and select android_winusb.inf

After that just follow some simple steps it shows.

Now it should work.

Upvotes: 2

Bruno Andrade
Bruno Andrade

Reputation: 281

Close Android Studio, open terminal and run: killall adb

Then open Android Studio, and run your project. Hope I helped you.

Upvotes: 2

Related Questions