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" />
source
share