我的应用程序是亚马逊批准的,但是当我使用kindle fire hd安装时显示不兼容

时间:2014-04-28 06:00:05

标签: android kindle-fire

我的应用程序是Cordova应用程序(Cordova 3.2.0-0.1.0),我安装并在ADB的Kindle fire上进行测试

我的应用程序已在亚马逊商店获得批准,我可以在我的Android设备中搜索并安装它,除了所有Kindle Fire平板电脑。 它显示我的应用程序与此设备不兼容.. 我查了03-pre-submission-assessment-guide而没帮忙......

下面是我的manifest.xml

<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" android:windowSoftInputMode="adjustPan" package="com.myapp.app" xmlns:android="http://schemas.android.com/apk/res/android">
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <application android:allowBackup="false" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="MainActivity" android:theme="@android:style/Theme.Black.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="myapp" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="11" android:targetSdkVersion="19" />
</manifest>

0 个答案:

没有答案