I am trying to do some Android development on a Kindle Fire, however I am having trouble making my Ubuntu 11.04 recognize the device for using it with the ADB. I've added a line like this SUBSYSTEM=="usb", ATTR{idVendor}=="1949", MODE="0666", GROUP="plugdev" in my etc/udev/rules.d/51-android.rules file, restarted the computer and plugged in the Fire but still adb devices did not show it.

Any suggestions?

Mihai

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

It seems that it works if you edit ~/.android/adb_usb.ini and add 2 lines containing 0x1949 and 0x006 and restart the adb server using

adb kill-server
adb start-server

Also, the 51-android.rules file contains the Lab126 vendor id.

You may also need to edit the inf file. See the instructions here: http://g-ecx.images-amazon.com/images/G/01/sdk/Connecting_your_Kindle_Fire_to_ADB.pdf

link|improve this answer
Doing this alone didn't work for me on Win7x64. I had to use the full instructions in David's answer. – Artem Russakovskii Dec 7 '11 at 17:15
1  
Well, this question was specifically for Ubuntu, so it doesn't solve the problem for other OS's. Probably works for other Linux distros, but I only tested this on Ubuntu. – r1k0 Jan 5 at 12:42
This does work, if you also follow the steps here relating to the inf file: g-ecx.images-amazon.com/images/G/01/sdk/… The inf file steps are the same thing David's site lists. – Lee - Slalom Feb 13 at 1:20
feedback

There will be a number of steps you have to take. Basically you need to edit an ini file. Different steps is needed for MAC and PC. Kindle Fire: Enable USB Debugging

link|improve this answer
This works great - r1k0's solution alone didn't work for me. – Artem Russakovskii Dec 7 '11 at 17:15
feedback
  1. Add a single line to: ~/.android/adb_usb.ini. The content of the line: 0x1949
  2. Restart server

    $ adb kill-server

    $ sudo adb start-server

Worked for me on Ubuntu 11.10

link|improve this answer
feedback

this one worked perfectly for me : http://aspergerite.com/2011/11/27/debugging-kindle-fire-apps-using-eclipse-on-ubuntu-linux/

remember to use sudo in order to edit some files .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.