1

我正在为 Eclipse Android 项目添加第二个 gradle 构建

但是,我必须解决很多较小的问题,因为 Gradle 会发现 Eclipse 构建没有的其他错误,例如重复值:

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':FunshionAndroid:mergeDebugResources'.
> D:\Workspaces\Proj\AndroidApp\res\values-hdpi\dimens.xml: Error: Found item Dimension/tvname_textsize more than one time

由于我的第一个目标是先完成 Gradle 构建,如何配置 gradle 不验证项目(比 Eclipse 更严格)

4

1 回答 1

2

OK,终于有 Lint 配置了。所以错误的原因是默认情况下为发布构建启用了 Lint(并且 gradle 默认进行调试和发布 2 构建)

android {
    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }
}

gradle assembleDebug仅使用调试构建。

于 2014-06-10T07:54:13.960 回答