android - 如何找到适用于 android 的 gradle lintOptions 文档?

标签 android gradle lint

我的 android 项目中出现“...未翻译为 ... [MissingTranslation]”错误。我通过谷歌搜索发现一些东西作为 abortOnError false 和关于 lintOptions 的文档.

但我不想忽略所有 lint 错误,所以我将 Eclipse 创建的 xml 复制为 lintConfig 文件(“default-lint.xml”),它可以工作。
我想知道在哪里可以找到有关可以在 lint.xml 中设置的所有 lint 选项的完整文档?

感谢您的帮助

最佳答案

这里是所有可用的选项(原始来源 here)

android {
    lintOptions {
        // set to true to turn off analysis progress reporting by lint
        quiet true
        // if true, stop the gradle build if errors are found
        abortOnError false
        // if true, only report errors
        ignoreWarnings true
        // if true, emit full/absolute paths to files with errors (true by default)
        absolutePaths true
        // if true, check all issues, including those that are off by default
        checkAllWarnings true
        // if true, treat all warnings as errors
        warningsAsErrors true
        // turn off checking the given issue id's
        disable 'TypographyFractions','TypographyQuotes'
        // turn on the given issue id's
        enable 'RtlHardcoded','RtlCompat', 'RtlEnabled'
        // check *only* the given issue id's
        check 'NewApi', 'InlinedApi'
        // if true, don't include source code lines in the error output
        noLines true
        // if true, show all locations for an error, do not truncate lists, etc.
        showAll true
        // Fallback lint configuration (default severities, etc.)
        lintConfig file("default-lint.xml")
        // if true, generate a text report of issues (false by default)
        textReport true
        // location to write the output; can be a file or 'stdout'
        textOutput 'stdout'
        // if true, generate an XML report for use by for example Jenkins
        xmlReport false
        // file to write report to (if not specified, defaults to lint-results.xml)
        xmlOutput file("lint-report.xml")
        // if true, generate an HTML report (with issue explanations, sourcecode, etc)
        htmlReport true
        // optional path to report (default will be lint-results.html in the builddir)
        htmlOutput file("lint-report.html")

        // set to true to have all release builds run lint on issues with severity=fatal
        // and abort the build (controlled by abortOnError above) if fatal issues are found
        checkReleaseBuilds true
        // Set the severity of the given issues to fatal (which means they will be
        // checked during release builds (even if the lint target is not included)
        fatal 'NewApi', 'InlineApi'
        // Set the severity of the given issues to error
        error 'Wakelock', 'TextViewEdits'
        // Set the severity of the given issues to warning
        warning 'ResourceAsColor'
        // Set the severity of the given issues to ignore (same as disabling the check)
        ignore 'TypographyQuotes'
    }
}

关于android - 如何找到适用于 android 的 gradle lintOptions 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31128770/

相关文章:

android - 深色主题 CardView 周围的白色边框

java - Gradle 错误 : java. lang.String 无法转换为 org.gradle.api.artifacts.Configuration

java - 如何在构建期间仅列出 Gradle 中的 runtimeClasspath 解析依赖项?

compiler-construction - 如何创建 Clojure Lint?

android - Firebase 使用 Node Js 函数通知未在 android 中接收,但它直接从 firebase 面板工作

android - 从 firebase 数据库 flutter 中的 uid 获取用户数据

gradle - Gradle项目测试取决于另一个项目的测试

android - 忽略 Android lint 中的几个警告

android - 如何创建特定于 flavor 的 Android Lint 基线文件

java - 将通知置于分隔线 android java 下方