Android 应用程序无法安装 Htc Wildfire 问题

发布于 2024-11-10 15:04:20 字数 970 浏览 3 评论 0原文

我已经在许多设备上测试了我的应用程序,例如 Samsung Xperia、Galaxy、HTC Desire 和 HTC droid,并且运行良好。然而,当我尝试在市场上的 Htc Wildfire 上安装时,我收到错误“与此设备不兼容”。有人对阻止我的应用程序安装的野火有何不同有任何建议吗?

这是清单

<?xml version="1.0" encoding="utf-8"?>

<application android:label="@string/app_name" android:icon="@drawable/applicationicontransparent">
    <activity android:name="com.myapp.test"
              android:label="@string/app_name" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.myapp.test.act1" android:screenOrientation="portrait"></activity>


</application>
<uses-sdk android:minSdkVersion="3"/>

提前致谢。

I have tested my app on many devices such as Samsung Xperia, Galaxy, HTC desire and HTC droid and it works fine. However when I try to install on a Htc Wildfire from the marketplace I get the error "Incompatible with this device". Does anyone have any advice as to what is different about the Wildfire that stops my app from installing?

Here is the Manifest

<?xml version="1.0" encoding="utf-8"?>

<application android:label="@string/app_name" android:icon="@drawable/applicationicontransparent">
    <activity android:name="com.myapp.test"
              android:label="@string/app_name" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.myapp.test.act1" android:screenOrientation="portrait"></activity>


</application>
<uses-sdk android:minSdkVersion="3"/>

Thanks in advance.

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

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

发布评论

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

评论(1

柠檬色的秋千 2024-11-17 15:04:20

Wildfire 是 QVGA 设备。确保您的目标是 API 4 或更高版本,或者在清单中明确表示您支持小屏幕。

您还可以使用“aapt dump badging”从市场的角度查看您将请求的权限。

Wildfire is a QVGA device. Make sure you are targeting API 4 or later, or have explicitly said in your manifest that you support small screens.

Also you can use "aapt dump badging to see the permissions you will be requesting from the perspective of market.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文