Android 应用程序无法安装 Htc Wildfire 问题
我已经在许多设备上测试了我的应用程序,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.