Gradle build: Falha na execução da tarefa ': app: lint'

Estou usando o Android Studio 2.0 e estava tentando executar o meu programa quando algo estranho aconteceu. Executei o comando build do gradle e recebi este erro:

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:lint'.
> Lint found errors in the project; aborting build.

Fix the issues identified by lint, or add the following to your build script to proceed with errors:
...
android {
    lintOptions {
        abortOnError false
    }
}
...

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 4.197 secs
Lint found errors in the project; aborting build.

Fix the issues identified by lint, or add the following to your build script to proceed with errors:
...
android {
    lintOptions {
        abortOnError false
    }
}
...
10:41:28: External task execution finished 'build'.

E então ... Que diabos é isso? Eu devo fazer para resolver esse problema adicionando o código ao gradle.build, mas a pergunta é:por que recebi essa mensagem de erro?

Por favor, me salve, pessoal!

questionAnswers(8)

yourAnswerToTheQuestion