Questions tagged [kindle-fire]

The Kindle Fire is a family of Android-based devices, using the Amazon ecosystem and running their AppStore for third party applications instead of the Google Play Store.

Amazon introduced the Kindle Fire on November 15, 2011. Based on the Android operating system, the original 7" color tablet device was tightly coupled with Amazon's Kindle ebook library, App Store, memberships (Prime) and web services (as a caching proxy for the Silk web browser).

In 2012 they released an Android 4.0.2 based update to the original 7" device, as well as a new HD 7" and 8.9" devices and with more emphasis on the android app eco-system.

In 2013 they released Android 4.2 based 7" HD and HDX devices and an 8.9" HDX model.

In April 2014, a smart TV device, building on the Kindle Fire brand and similarly using Android, called Amazon Fire TV was introduced.

In September 2014, they announced FireOS4 (Android 4.4) based 6", 7" HD devices and an updated 8.9" HDX, as well as beginning a roll-out of FireOS4 to the 2013 HDX tablets.

324 questions
1
vote
1 answer

On Kindle fire IME_ACTION_DONE is not working

I have two editText's in layout , when I entered username soft keyboard shows "next" button and when i entered password soft keyboard shows "done".It is working properly in all devices except " Kindle Fire " device. On Kindle Fire , While entering…
user2603
  • 83
  • 1
  • 8
1
vote
2 answers

How to check if the device is a "1st generation Kindle Fire " or other version?

In my application I need to check if the device is a "1st generation Kindle Fire" or other version. How can I do this?
user2431597
  • 29
  • 1
  • 3
  • 8
1
vote
3 answers

FATAL EXCEPTION: main java.lang.VerifyError

I'm testing my application on various emulators Kindle Fire, but on this tablet I have big problems. The app is always crashes with the following LogCat: E/AndroidRuntime(368): FATAL EXCEPTION: main E/AndroidRuntime(368): …
user2431597
  • 29
  • 1
  • 3
  • 8
1
vote
1 answer

Nofication sample - kindle fire

Since GCM (previously: C2DM) is not supported on Kindle Fire devices, I'm now searching the other best notification service available. Which is the best notification service for Kindle Fire?
Mathan
  • 49
  • 3
  • 10
1
vote
1 answer

kindle fire custom url how to?

Im creating a android app need to support custom url. like myapp:// It's work in the other android devices. But Kindle Fire tested not work. I just add the code below to AndroidManifest.xml to make the custom url work. for the Kindle Fire do I…
Payne Chu
  • 543
  • 1
  • 5
  • 15
1
vote
1 answer

how can I do no proguard to a jar in android

I include a jar to my project. I put the jar in libs folder. Then I add to build path. I run the project on my device, it runs fine. But when I signed it, it runs crash. I guess it was the proguard. If I don't wannna progurad the very jar, How can…
Wesley
  • 4,084
  • 6
  • 37
  • 60
1
vote
0 answers

Trouble with jquery and fastclick at kindle fire

I have a web page where i open a jquery calculator. This page works only with safari from desktop and with chrome from android devices beacause i use a embedded dataabse. When someone navigates to that page with a table device the interaction with…
ddarellis
  • 3,912
  • 3
  • 25
  • 53
1
vote
3 answers

how to use listview with checkbox and perform some task on checkbox click?

How to use checkbox with listview .in this i want to perform some task on checkbox click .I didnt get get how can i pick that particular id or listitem value , using checkbox.
Mapoo
  • 41
  • 4
1
vote
1 answer

how to remove hibernation error in android application?

hey guys i upload my application on amazon market place m getting the error Bug Description:"App name" was found to be incompatible because of issues with the app’s interaction with Kindle Fire's hibernation feature."App Name (Kindle Tablet…
Mapoo
  • 41
  • 4
1
vote
1 answer

android: DatePicker background on KindleFire HD

I tryed to use DatePicker dialog on Kindle. But Edit fields without the background! How I can to fix it (standard-way)? You can check it in emulator. I use Android 2.2 for building application.
monyag
  • 800
  • 3
  • 9
  • 27
1
vote
1 answer

Kindle Fire Phonegap cross domain request not working

I am trying to do request cross domain using phonegap/cordova v2.4 in Kindle Fire. I am also using jquery/jquery mobile for the test case. I have had no issues in the past with android devices but when I migrated to Kindle, I cant seem to get the…
Kalel Wade
  • 7,742
  • 3
  • 39
  • 55
1
vote
0 answers

Could not find any EGL configs on some devices (Kindle Fire)

Any ideas why these attribs fail to retrieve any suitable EGL config for me on Kindle Fire? EGL_RED_SIZE = 5 EGL_GREEN_SIZE = 6 EGL_BLUE_SIZE = 5 EGL_ALPHA_SIZE = 0 EGL_DEPTH_SIZE = 0 EGL_STENCIL_SIZE = 0 EGL_CONFIG_CAVEAT = EGL_NONE I've noticed…
Habba
  • 1,179
  • 2
  • 13
  • 32
1
vote
1 answer

hide soft key toolbar completely on kindle fire

I can see the videos played in kindle fire has no soft key toolbar, How can I do this effect? can I hide the soft key toolbar completely?
Wesley
  • 4,084
  • 6
  • 37
  • 60
1
vote
1 answer

What to add to manifest to deny Kindle Fire 1st Gen

Im having a problem with inputType “numberSigned” and “numberDecimal” cancel each other out, but only on the Kindle Fire 1st gen. I would like to make sure people in the Play stor get a "This device is not compatible" message so they cannot buy the…
1
vote
1 answer

Kindle Fire first-generation inputType "numberSigned" and "numberDecimal" cancel each other out

I have a calculator-type app in the store that has some editText boxes that only allow numbers, decimals, and negative numbers. I put in the XML android:inputType="numberDecimal|numberSigned". This worked great for every device I tested it on,…