Amazon Android app not showing up on Kindle Fire

What is the trick to getting the Amazon marketplace app on the Kindle Fire?

I posted my Android app on the Amazon Marketplace and it was approved a few months ago. When I search for this application (through the Amazon Marketplace) on my Motorola Xoom or my wife Nexus One, I can find it. Search on the Kindle, it’s nowhere to be found.

I read Amazon's suggestions at https://developer.amazon.com/help/faq.html regarding the Kindle Fire, and it does not give any hints as to why it will not appear. My manifest has the following relevant entries:

<supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:resizeable="true"
    android:anyDensity="true"
    />
<uses-permission android:name="android.permission.GET_ACCOUNTS"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-sdk android:minSdkVersion="8" />
0
source share
2 answers

Amazon Kindle Fire. ? Amazon Kindle Fire, -, , , , eReader.

+5

minSdkVersion?

<uses-sdk android:minSdkVersion="10" />

Amazon:

Target: Android 2.3.4 - API Level 10  

sdk , KF .

+1

All Articles