我在 Google Play 商店中有一个应用程序。我已经设置了清单,以便它接受小、中、大和超大(所有屏幕尺寸)的屏幕尺寸。该应用程序可以安装在我遇到的所有手机和平板电脑上,除了现在有人提到他们的三星 mini 2 (Samsung GT-S6500D) 不允许他们安装它。它告诉他们该应用程序与他们的设备不兼容。
我已经验证他们运行的是 Android 2.3.6,并且我的应用适用于 2.3.3 或更低版本的任何人。
我还被告知三星 Galaxy Tab 2 说它不兼容。为什么会这样??
我是否缺少允许所有手机/平板电脑使用我的应用程序的东西?
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxx"
android:versionCode="xx"
android:versionName="xx">
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.CAMERA" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
/>
<application android:icon="@drawable/icon" android:allowBackup="true">
<activity android:name=".ItineraryHomeActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:label="@string/app_name"
>
<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" />
<data android:scheme="file" />
<data android:host="*" />
<data android:port="*" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.tgtp" />
</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:mimeType="text/xml" />
</intent-filter>
</activity>
<activity android:name=".EditHomeItListActivity" android:configChanges="keyboardHidden|orientation" android:label="@string/itinerary_title"
android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="stateUnchanged"
/>
</application>
</manifest>
这难道不应该让每个运行 2.3.3 及以上版本的 Android 设备都可以使用该应用程序吗?