Я использую Android Studio 2.0, и я пытался запустить свою программу, когда произошло что-то странное. Я запустил команду построения градиента, и я получил эту ошибку:
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, но вопрос в том, почему я получил это сообщение об ошибке?
Пожалуйста, спаси меня, ребята!