是“过渡”在Android无效的资源目录名称?名称、目录、资源、Android

2023-09-07 22:38:05 作者:给你一口甜甜

我把从Android的示例项目的ApiDemos项目。不幸的是,该项目的抱怨无效的资源目录名称转换/ ApiDemos / RES 1号线的Andr​​oid AAPT问题

I make the ApiDemos project from Android Sample Project. Unfortunately, the project complains invalid resource directory name transition /ApiDemos/res line 1 Android AAPT Problem.

我的Eclipse版本为:朱诺服务版本2和JDK 7的ADT插件是V22.6.0。有什么不对呢?

My Eclipse is Version: Juno Service Release 2 and JDK 7. The ADT plugin is V22.6.0. What's wrong with it?

推荐答案

是的, 转换 资源是有效的,API的19。

Yes, transition resources are valid as of API 19.

要摆脱的错误,让您的构建SDK API级别19或更高。

To get rid of the error, make your build SDK API level 19 or higher.

要做到这一点,在Eclipse / ADT,无论是

To do that, in Eclipse/ADT, either

打开项目属性,进入Android和选择项目建设目标为19 API,或

open Project Properties, go to Android and select Project Build Target as API 19, or

修改 project.properties 在项目的根和编辑目标来如的android-19

edit project.properties at project root and edit target to e.g. android-19

当然,你必须有SDK管理器安装SDK 19,并有向上安装最新版本的工具。

Of course, you will have to have SDK 19 installed with SDK Manager and have up-to-date build tools installed.