为什么我的应用程序没有向 Android Market 中的 1.5 用户显示?

发布于 2024-10-02 01:53:12 字数 827 浏览 5 评论 0原文

该应用程序是 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 的用户使用。事实并非如此。这是一个市场过滤问题。

请参阅 这个线程了解我所做的更改以及我如何进行更改的信息,这要感谢您的一些建议。

tl;dr

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

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?

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

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

发布评论

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

评论(1

御弟哥哥 2024-10-09 01:53:12

Reddit 上一位乐于助人的用户的回答。

“我遇到了同样的问题,解决方案是

为什么?

因为

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

Answer by a helpful user on Reddit.

"I had the same problem, solution was <supports-screens/>

Why?

Because

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