android sdk 版本 3.0 minSdkVersion
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 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
因为您指定的 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...
你的 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
你的
androidmanifest.xml
中有一个标签,它描述了运行你的应用程序至少需要哪个 Android 版本
如果您希望您的应用程序在 Honeycomb 上运行(并且不低于 2.x),请将数字更正为
11
There is a tag in your
androidmanifest.xml
, likeIt 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