安卓应用:我的清单接受所有屏幕尺寸,但三星GT-S6500D无法安装它



我在Google Play商店里有一个应用程序。我已经设置了清单,以便对于屏幕大小,它接受小、中、大和超大(所有屏幕大小)。该应用程序在我遇到的手机和平板电脑上都可以安装,但现在有人提到他们的三星mini 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及以上版本的安卓设备都能使用该应用程序吗?

我想明白了。谷歌播放商店中的一句话被用作过滤器:

<uses-permission android:name="android.permission.CAMERA" />

我不知道为什么会这样,因为所有不起作用的手机/平板电脑都已经有了摄像头。。。但修复方法是将其改为"使用功能"标签,而不是要求它:

 <uses-permission android:name="android.permission.CAMERA" />

希望这能帮助

相关内容

  • 没有找到相关文章

最新更新