Reputation: 23
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
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:
Open the standalone Sdk manager
and check if Google Usb Driver is installed or not in the Extras section, if not install it.
Right Click on My Computer -> Manage -> Device Manager
Select your device and right click.
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.
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
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