我在Google Play商店中有一个应用。我已经设置了清单,因此对于屏幕尺寸,它可以接受小,中,大和超大(所有屏幕尺寸)。该应用程序可安装在手机和平板电脑上我遇到的所有内容,除了有人提到他们的三星迷你2(三星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设备吗?
答案 0 :(得分:0)
我明白了。说您需要相机权限的行被用作Google Play商店中的过滤器:
<uses-permission android:name="android.permission.CAMERA" />
我不知道为什么会出现这种情况,因为所有不能正常工作的手机/平板电脑都有相机...但修复方法是将其更改为“使用功能”标签,而不是使它成为必需:
<uses-permission android:name="android.permission.CAMERA" />
希望这有助于某人