Сборка Gradle: не удалось выполнить задачу ': app: lint'

Я использую Android Studio 2.0 и пытаюсь запустить свою программу, когда происходит что-то странное. Я запустил команду сборки Gradle, и я получил эту ошибку:

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'.

И так ... Что, черт возьми, это? Я должен сделать, чтобы решить эту проблему, добавив код в gradle.build, но вопрос:почему я получил это сообщение об ошибке?

Пожалуйста, спасите меня, ребята!

Ответы на вопрос(8)

Ваш ответ на вопрос