繁体   English   中英

为什么我的应用程序无法在Android Market中为1.5个用户显示?

[英]Why is my app not showing up for 1.5 users in the Android Market?

该应用是Android市场上的Flash Cards Max 我最近使用仅1.6功能更新了我的应用程序。 但是,我仍然希望该应用程序可以与装有Android 1.5的应用程序一起使用。 我在Eclipse中使用Android 1.6构建了它,并且Android清单文件中包含正确的字符串。

<uses-sdk 
    android:minSdkVersion="3"
    android:targetSdkVersion="4"
 />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

一切都可以在1.5的模拟器上正常运行,只是要确保它能在1.5的模拟器上显示在Android电子市场中。 它不是。 这是一个市场过滤问题。

由于您的一些建议,请参阅此主题以获取有关我所做的更改以及如何进行的信息。

tl; dr

为什么我的应用程序不显示1.5个用户?

有用的用户对Reddit的回答。

“我遇到了同样的问题,解决方法是<supports-screens/>

为什么?

因为

android:anyDensity

Indicates whether the application can accommodate any screen density. Older applications (pre API Level 4) are assumed unable to accomodate all densities and this is "false" by default. Applications using API Level 4 or higher are assumed able to and this is "true" by default. You can explicitly supply your abilities here."

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM