Kindle Fire USB Debugging Mode

I am transferring Android apps to Kindle Fire in eclipse. The problem is that I did not know how to turn on / off the debug mode of the USB Kindle Fire ??

+4
source share
3 answers

simple here

+2
source

You just need to add the Fire Fire device ID to your android_usb.ini file android_usb.ini Google ADB drivers to find it. You can do this from the command line very easily:

 echo 0x1949 >> "%USERPROFILE%\.android\adb_usb.ini 

Then restart adb

 adb kill-server adb start-server 
+2
source

Here's how I can enable USB debugging on Kindle devices

From Kindle Fire, open Settings.

Depending on your device, do one of the following:

Original Kindle Fire - No action required. ADB is enabled by default.

Kindle Fire HD - Select Security.

HDX and newer models - tap “Device” or “Device Settings”, then press “Serial Number” 7 times until “Developer Settings” is unlocked.

Select "Developer Options." Set "Enable ADB" to "On" and enable USB debugging.

Now you can see your device in the list of devices when you try to start the application. You can go to the same option to disable USB debugging.

I did not have to download any separate drivers for the Kindle Devices, but I always guarantee that my tools and Android SDK platforms are kept up to date.

+1
source

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


All Articles