How to debug apps on Amazon Kindle Fire with Eclipse on Mac?

Possible duplicate:
Debugging Android Applications in Ignition Mode

I have been testing apps on Amazon Kindle Fire since last month. I used these steps to connect the Kindle Fire for development

How to connect to Kindle Fire for development? Everything is working fine.

Now I have updated ADT (16.0.1) and the SDK, and after that my kindle fire is not related to Eclipse. Also, after updating the ADT, the adb_usb.ini file (located in ~ / .android /) is missing in this place.

Please advise how to connect the ignition fire with Eclipse.?

Thanks in advance.

+6
source share
1 answer

Configuring OSX Change adb_usb.ini

  • Open the ~ / .android / adb_usb.ini file for editing
  • Add 0x1949
  • Add 0x0006
  • Save file

Note. Make sure that there is only one entry per line. If the file does not exist, create the file and make sure that you have the necessary Android SDK settings. Restart the ADB server and confirm the discovery of your Kindle Fire.

  • Open a terminal shell
  • Run adb kill-server command
  • Running adb start-server command
  • Run the adb devices command and find Kindle Fire in the list of devices

If your Kindle Fire is not detected, you may need to restart your computer or log out and log in. The changes will take effect.

source: Amazon pdf for connecting fire to adb

+12
source

Source: https://habr.com/ru/post/905312/


All Articles