无法让 Android Market 排除此应用程序的小屏幕手机

发布于 2024-12-06 09:34:31 字数 826 浏览 1 评论 0原文

由于明显错误,该应用程序最初发布时错误地支持所有屏幕尺寸。现在,这个问题似乎已经得到解决,但仍有大量愤怒的用户使用 Samsung Intercepts 或类似的 LDPI、小屏幕设备,以某种方式购买并安装该应用程序。这是清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="..."
  android:versionCode="7"
  android:versionName="1.06">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
<application android:label="@string/app_name" android:icon="@drawable/icon" android:debuggable="true" android:theme="@android:style/Theme.NoTitleBar">

    <supports-screens
            android:smallScreens="false"
            android:normalScreens="true"
            android:largeScreens="true"/>
    <activity android:name="..."
    </activity>

</application>

“...”表示匿名内容。有人知道是什么导致 Android Market 仍然向小屏幕提供此功能吗?

This app was originally released erroneously supporting all screen sizes due to a manifest error. That has now seemingly been cleaned up, but there is still a continuous parade of angry users with Samsung Intercepts or similar LDPI, small-screen devices who were somehow able to purchase and install the app. Here is the manifest:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="..."
  android:versionCode="7"
  android:versionName="1.06">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
<application android:label="@string/app_name" android:icon="@drawable/icon" android:debuggable="true" android:theme="@android:style/Theme.NoTitleBar">

    <supports-screens
            android:smallScreens="false"
            android:normalScreens="true"
            android:largeScreens="true"/>
    <activity android:name="..."
    </activity>

</application>

The "..." indicates anonymized content. Does anybody have an idea of what is causing the Android Market to still make this available to small screens?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月牙弯弯 2024-12-13 09:34:31

support-screens 标签应该放在应用程序标签之外,类似于:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="..."
android:versionCode="7"
android:versionName="1.06">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
<application android:label="@string/app_name" android:icon="@drawable/icon"   
android:debuggable="true" android:theme="@android:style/Theme.NoTitleBar">
<activity android:name="..."
</activity>

</application>
<supports-screens
        android:smallScreens="false"
        android:normalScreens="true"
        android:largeScreens="true"/>

support-screens tag should be put outside the application tags, similar to this:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="..."
android:versionCode="7"
android:versionName="1.06">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7"/>
<application android:label="@string/app_name" android:icon="@drawable/icon"   
android:debuggable="true" android:theme="@android:style/Theme.NoTitleBar">
<activity android:name="..."
</activity>

</application>
<supports-screens
        android:smallScreens="false"
        android:normalScreens="true"
        android:largeScreens="true"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文