市场发布时Android最低版本
我已经向 Google 支持询问过此问题,但他们没有提供帮助...
在我的清单中,我有
使用 sdk android:minSdkVersion="10"
,它对应于版本 2.3.3,但是当我将应用程序发布到市场时,它说所需的最低版本是 2.3.7 并在过滤器中使用它。
我如何告诉市场使用 2.3.3 作为最低版本?
谢谢。
I've already asked Google support about this and they were no help ...
In my manifest I have
uses-sdk android:minSdkVersion="10"
which corresponds to version 2.3.3 however when I publish the app to the market it says that the minimum version required is 2.3.7 and uses that in the filter.
How do I tell the market to use 2.3.3 as the minimum version ??
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
2.3.7 是 Gingerbread_MR1 的最新版本。如果支持 2.3.3 确实那么重要,我建议切换到 SDK 版本 9。
2.3.7 is the latest revision of Gingerbread_MR1. I would recommend switching to SDK version 9 if supporting 2.3.3 is really that important.
我怀疑您使用的清单过滤器条目(或)API 与 2.3.7 兼容,而不是 2.3.3(我怀疑您可能升级到 2.3.7),这会阻止使用 2.3.3,即使您使用 min-sdk 10。
请参阅此评论来自文档
o 使用Android中引入的API 2.3.3 在您的应用程序中,您需要针对 Android 2.3.3 SDK 平台中提供的 Android 库编译应用程序。
I suspect your manifest filter entries (or) API used is compatible of 2.3.7 than 2.3.3 (I suspect you might upgraded to 2.3.7) which prevents using 2.3.3 even though you use min-sdk 10.
see this comment from documentation
o use APIs introduced in Android 2.3.3 in your application, you need compile the application against the Android library that is provided in the Android 2.3.3 SDK platform.