为什么我的应用没有在Android电子市场中出现1.5用户?

时间:2010-11-13 16:43:38

标签: android google-play android-1.5-cupcake

该应用在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只是为了确保它出现在Android Market上的那些1.5。它不是。这是一个市场过滤问题。

请参阅this thread,了解我的一些建议,了解我改变了什么以及我如何改变它。

TL;博士

为什么我的应用不会出现在1.5用户身上?

1 个答案:

答案 0 :(得分:0)

有用的用户在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."