Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADB cannot detect my Kindle Fire on Windows 7, but Device Manager can

So I've thrown the book at this problem and think I've isolated the cause.

I've downloaded and installed JDK 32 and 64 bit. I've installed the Android SDK as needed. I've modified android_winusb.inf inside of the google-usb-driver to include the Kindle Fire device IDs. I tried downloading the kindle fire windows 7 driver from amazon (as described in the answer here), and using that.

I tried modifying that driver to include the fire device ID in the x86 section.

I've killed and restarted adb diligently, and restarted my comp several times to see if that would magically fix it. nothing.

The only thing I'm unsure about is the modification of adb_usb.ini. Unfortunately, my .android folder doesn't exist in my %USERPROFILE%, but instead exists in another location on my computer. That folder doesn't have adb_usb.ini either. So I copied the contents of .android to my %USERPROFILE%, and created adb_usb.ini in each, and added 0x1949 to that empty file.

This did not work. adb devices still turns up zilch.

I think adb is having trouble finding my adb_usb.ini, but really, I have no idea. And if that is the case, I don't know how to fix that. Help?

like image 945
ruedaminute Avatar asked Dec 01 '11 20:12

ruedaminute


People also ask

Why is ADB not detecting my device?

In most cases, ADB cannot recognize your device because the USB debugging option is turned off on the device. Turning this option on can fix the issue for you and this is pretty easy to do. Enabling USB debugging does not do anything on your device.


2 Answers

Just adding 0x1949 to the adb_usb.ini was enough for me.

like image 136
Sileria Avatar answered Oct 23 '22 17:10

Sileria


Make sure that you have added the right product/vendor id in adb_usb.ini file.

I had the same exact problem only after adding 0x1949 I could see the device listed. Either amazon is changing the id's or people are giving wrong id's in random forums. The first one is definitely not required.

After adding the product id's my adb_usb.ini looks like this and I don't think your .android location matters

0x0e79 
0x006 
0x1949
like image 41
satyajit Avatar answered Oct 23 '22 17:10

satyajit