Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Debug Apps on Amazon Kindle Fire with Eclipse on Mac? [duplicate]

Possible Duplicate:
Debugging android apps on the kindle fire

I am testing apps on Amazon Kindle Fire since last one month. I had used these steps to connect Kindle Fire for development

How do I connect to Kindle Fire for development? Everything was working fine.

Now I have upgraded my ADT(16.0.1) and SDKs and after that my kindle fire is not connecting with Eclipse. Also after updating ADT "adb_usb.ini" file (located in ~/.android/) is not present on this location.

Please advise on How to connect kindle fire with Eclipse.?

Thanks in advance.

like image 758
Mac Avatar asked Jan 06 '12 13:01

Mac


1 Answers

OSX Setup Modify your adb_usb.ini

  1. Open the ~/.android/adb_usb.ini file for editing
  2. Add 0x1949
  3. Add 0x0006
  4. Save the file

Note: Make sure there is only one entry per line. If the file does not exist, create the file and make sure you have the required Android SDK prerequisites configured. Restart the ADB server and confirm your Kindle Fire is detected

  1. Open a terminal shell
  2. Execute adb kill-server command
  3. Execute adb start-server command
  4. Execute adb devices command and locate Kindle Fire under the device list

If your Kindle Fire is not being detected, you may need to reboot your computer or log out and log in for the changes to take effect.

source: Amazon's instruction PDF for connecting fire to adb

like image 57
ajma Avatar answered Nov 07 '22 06:11

ajma