Android app in Amazon Market not showing on Kindle Fire

给你一囗甜甜゛ 提交于 2019-12-23 05:49:08

问题


What is the trick to getting an app to show in the Amazon Market on the Kindle Fire?

I have submitted my android app to Amazon Marketplace and it was approved months ago. When I search for that app (through Amazon Marketplace) on my Motorola Xoom, or my wife's Nexus One, I am able to find it. Search on the Kindle, its nowhere to be found.

I read Amazon's suggestions at https://developer.amazon.com/help/faq.html regarding the Kindle Fire and it doesn't give any hints why it wouldn't show up. I have the following relevant entries in my Manifest:

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

回答1:


Amazon approve apps separately for the Kindle Fire. What is the nature of your application? Amazon are blocking certain apps from the Kindle Fire, seemingly where it competes with their services, like eReader apps.




回答2:


Have you tried increasing the minSdkVersion?

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

They explicitly say in the Amazon's suggestions:

Target: Android 2.3.4 - API Level 10  

I'm using that sdk version in my app and I can find it the KF store without problems.



来源:https://stackoverflow.com/questions/9662461/android-app-in-amazon-market-not-showing-on-kindle-fire

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!