I recently got a kindle fire for testing, but had some issues connecting it to ADB.
- Get the Vendor id by typing:
lsusb
The line we are looking for is:
Bus 003 Device 026: ID 1949:0006 Lab126 - Add the vendor id (1949) to /etc/udev/rules.d/51-android.rules as per normal
SUBSYSTEM=="usb", SYSFS{idVendor}=="1949", MODE="0666"Usually a device would work here but it wasnt happening with the fire … - The solution is as per this link: StackOverflow
You also need to add the vendor id to ~/.android/adb_usb.ini (you need to check the file doesn’t exist first).echo "0x1949" >>~/.android/adb_usb.ini echo "0x0006" >>~/.android/adb_usb.ini
- Then we restart the ADB server and the device should be shown:
adb kill-server adb start-server adb devices






No comments yet!
You can be legendary and add one ...
All spam will be deleted - don't waste my time and yours. Fackbook profiles posted will be reported to FB as spam accounts
By submitting a comment you grant Sentinel Web Technologies a perpetual license to reproduce your words and name/web site in attribution. Inappropriate and irrelevant comments will be removed at an admin’s discretion. Your email is used for verification purposes only, it will never be shared.