抑制 AndroidManifest.xml minSdkVersion 相关警告

发布于 2024-10-14 05:52:15 字数 471 浏览 3 评论 0原文

正如这里推荐的http://developer.android.com/guide/practices/screens_support.html< /a> 出于兼容性原因,我的 AndroidManifest.xml 包含以下内容:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>

这会在 eclipse 中生成警告:

属性 minSdkVersion (3) 较低 高于项目目标 API 级别 (4)

是否有任何方法可以抑制此警告或以其他方式消除它?这真的很烦人。

As recomended here http://developer.android.com/guide/practices/screens_support.html for compatibility reasons my AndroidManifest.xml contains this:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>

This generates warning in eclipse:

Attribute minSdkVersion (3) is lower
than the project target API level (4)

Are there any means to suppress this warning or get rid of it any other way? It is really annoying.

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

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

发布评论

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

评论(3

我的影子我的梦 2024-10-21 05:52:15

简而言之,据我所知,没有内置的方法可以做到这一点。

这是去年 8 月的讨论。

这里是泽维尔·杜罗切特的回应。

看起来你可以根据 Mark Murphy 在第一个线程中的回复手动删除它:

或者,您可以修改SetupTask.java,消除此测试(第297-308行)
由 Google 代码搜索索引的代码),并将其构建为自定义
Android Ant 扩展的版本

有一个功能请求,可能会处理这个问题,但谁知道什么时候会实施。

In short, there is no built-in way to do this that I know of.

Here's a discussion from last August.

And here is a Xavier Durochet's response.

It looks like you can manually remove it according to Mark Murphy's response in the first thread:

Or, you can modify SetupTask.java, eliminate this test (lines 297-308 in
the code indexed by Google Code Search), and build it into a custom
version of the Android Ant extension

There is a feature request that may deal with this, but who knows when it will be implemented.

一页 2024-10-21 05:52:15

2011年的答案不再准确。根据此错误,该问题已在 ADT 17 中修复。

The answer from 2011 is no longer accurate. It was fixed in ADT 17 according to this bug.

牵强ㄟ 2024-10-21 05:52:15

这个警告是一个常见的警告。我正在使用 minSdkVersion 来支持 Android 1.5,并且正在为 Android 1.6 进行构建以支持小屏幕。您可以使用最新的 Android 2.3 库构建您的应用程序,但仍支持较低版本。

This warning is an usual one. I am using minSdkVersion to support Android 1.5 and I am building for Android 1.6 to support small screens. You can build your application with the latest Android 2.3 library, but still support a lower version.

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