android sdk 版本 3.0 minSdkVersion

发布于 2024-12-02 06:11:55 字数 104 浏览 1 评论 0原文

我正在尝试使用 android sdk 版本 3.0 制作 android 程序,但出现一些错误。 “minSdkVersion(7) 低于项目目标 API 级别 (11)”。 这是什么原因呢?

I am trying to make android program with android sdk version 3.0, but I have some errors.
"minSdkVersion(7) is lower than the project target API level(11)".
what is the reason is this?

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

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

发布评论

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

评论(4

沫雨熙 2024-12-09 06:11:55

在 AndroidManifest.xml 中,您将所需的最低版本设置为 Android 2.1 (API 7),但您的构建目标为 Android 3.0 (API 11)。

如果您的目标确实是 Android 3.0 及更高版本,请在清单文件中设置以下行:

如果没有,那么您还必须安装 2.1 版的 Android SDK(或者您真正想要的最低 sdk 版本) 。

参见:
http://developer.android.com/guide/topics/manifest /uses-sdk-element.html
http://developer.android.com/guide/publishing/versioning.html

In your AndroidManifest.xml you set as minimum required version Android 2.1 (API 7), but you have a build target of Android 3.0 (API 11).

If your target really is Android 3.0 and higher, then set in the manifest file the following line:
<uses-sdk android:minSdkVersion="11" />

If not, then you also have to install the Android SDK for version 2.1 (or the version you really want as a minimum sdk version).

See also:
http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
http://developer.android.com/guide/publishing/versioning.html

作业与我同在 2024-12-09 06:11:55

因为您指定的 minSdkVersion 小于 AndroidManifest.xml 文件中的 targetSdkVersion 属性。

无论如何,不​​用担心警告。当您创建一个使用某些 api 11 特定功能(主题、资源等)的应用程序时,这种行为是正常的,但可以毫无问题地降级到 api 7...

Because you specified a minSdkVersion less than the targetSdkVersion attribute in AndroidManifest.xml file.

Anyway, don't worry about the warning. This behavior it's normal when you create an app that use some api 11 specific features (themes, resources, etc) but can downgrade to api 7 without problems...

2024-12-09 06:11:55

你的 androidmanifest.xml 中应该有类似的内容

use-sdk android:minSdkVersion="7"

你应该将其更改为你正在寻找的版本

you should have something like this in your androidmanifest.xml

uses-sdk android:minSdkVersion="7"

you should change it to the version you are looking for

壹場煙雨 2024-12-09 06:11:55

你的 androidmanifest.xml 中有一个标签,

<uses-sdk android:minSdkVersion="7" />

它描述了运行你的应用程序至少需要哪个 Android 版本
如果您希望您的应用程序在 Honeycomb 上运行(并且不低于 2.x),请将数字更正为 11

There is a tag in your androidmanifest.xml, like

<uses-sdk android:minSdkVersion="7" />

It describes which Android version is needed at minimum to run your application
If you want your application to run on Honeycomb (and nothing below like 2.x) correct the number to 11

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