为什么我的应用程序没有向 Android Market 中的 1.5 用户显示?
该应用程序是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Reddit 上一位乐于助人的用户的回答。
“我遇到了同样的问题,解决方案是
为什么?
因为
Answer by a helpful user on Reddit.
"I had the same problem, solution was
<supports-screens/>
Why?
Because