应用程序未在kindle设备上显示(仅显示在非亚马逊设备上)

时间:2013-12-04 11:03:32

标签: android kindle-fire

我创建了一个简单的应用程序并上传到亚马逊商店。 问题是它只能在非亚马逊Android设备上下载。该应用程序很简单,只有一个活动。该活动仅包含一个Web视图,该视图会加载以下URL - www.myromancereads.com。如果我在真正的kindle设备上直接安装/调试/运行应用程序,它可以正常工作。以下是我的清单文件: -

<?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.brian.romancereads"
        android:versionCode="2"
        android:versionName="2.0" >
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/CustomTheme" >
    <activity
        android:name="com.brian.romancereads.Main" 
        android:configChanges="orientation|keyboardHidden|screenSize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

以下是亚马逊appstore的两个截图: -

1&GT; http://www.greenbean.in/images/rr1.jpg

2 - ; http://www.greenbean.in/images/rr2.jpg

我已遵循Kindle火灾开发的所有指南,但该应用程序仍然不适用于Kindle设备。我不明白这是什么问题。任何帮助将不胜感激。

谢谢...

1 个答案:

答案 0 :(得分:0)

这可能是您的设备目标设置在门户网站本身,而不是代码问题。屏幕截图rr2显示它不适用于Appstore上的这些设备。屏幕截图rr1是Appstore Developer Select计划的一部分,该程序需要定位Kindle设备。我在我们的开发者博客上发了一篇帖子,其中包含更多程序details here

您可以转到应用和服务下的dashboard here,选择我的应用,然后点击相关的应用名称。您应该看到“二进制文件”选项卡和“设备支持”部分。你能证实你已经在那里检查过Kindle设备吗?

以下是屏幕截图of device Support for one of my own apps

我的预感是,您目前只能检查“基于我的清单的所有非亚马逊Android设备”。

相关问题