Lint在组装发行目标并添加语言xml文件时发现致命错误

时间:2018-08-02 08:51:59

标签: android

我刚刚在Android Studio项目中为另一种语言添加了一个新的xml文件。构建项目时出现错误:

Lint found fatal errors while assembling a release target.

To proceed, either fix the issues identified by lint, or modify your build script as follows: ... 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
    } }

1 个答案:

答案 0 :(得分:0)

我发现翻译器输入了错误的资源名称。例如,必须在

<string name="Example">"This is an example"</string>

他打字

<string name="Exmple">"This is an example"</string>

因此,“示例”与“示例”不同。 Android Studio可能已提供有关该错误的更多信息。我花了几个小时才找到答案。 xml文件具有数百个字符串资源。像“ 未使用默认语言定义资源示例”这样的错误行就足够了。