0

The app is Flash Cards Max on the Android market. I recently updated my app with a 1.6 only feature. However, I still want the app to work with those that have Android 1.5. I built it using Android 1.6 in Eclipse and I have the correct strings in the Android manifest file.

<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" />

Everything works in the emulator fine on 1.5 just want to be sure it shows up on the Android Market for those with 1.5. It does not. This is a market filtering question.

Please see this thread for info on what I changed and how I went about it thanks to several of your suggestions.

tl;dr

Why doesn't my app show up for 1.5 users?

4

1 回答 1

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."
于 2010-11-13T20:29:23.073 回答