avoid lint when gradle execute check

android, gradle, lint

Solution

gradle build -x lint 

Source: Gradle User Guide : Excluding Tasks

Problem

could someone tell me a way to avoid executing "lint" each time I run in gradle check? I've defined in build.gradle ``` lintOptions { quiet true } ``` However, it keeps doing this task. The problem is that it takes ages each time I have to do a check.

Original source