lintOptionsのabortOnError false

環境

  • OS X Yosemite v10.10.4
  • AndroidStudio v1.3.1

発生した問題

概要

AndroidStudioでビルドしようとしたとき、次のようなエラーが発生しました。

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task '***'.
> 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 --info or --debug option to get more log output.

* Exception is:
***
解決法

build.gradleに次の記述を追記するとビルドが通るようになります。

android {
    lintOptions {
        abortOnError false
     }
}