市场发布时Android最低版本

发布于 2024-12-29 04:08:23 字数 211 浏览 2 评论 0原文

我已经向 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 技术交流群。

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

发布评论

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

评论(2

懒猫 2025-01-05 04:08:23

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.

擦肩而过的背影 2025-01-05 04:08:23

我怀疑您使用的清单过滤器条目(或)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.

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