Hi,

you should be able to disable the lint task completely with something like 
this:

afterEvaluate{
    tasks.findAll{it.name.startsWith("lint")}.each{it.enabled = false}
}

The task will still be there, but gradle will skip it at execution time.

Best,
-Thasso

On Friday, June 20, 2014 3:18:45 AM UTC+2, Prateek Srivastava wrote:
>
> I know we can suppress lint from failing the build as show below, but is 
> there a way to simply not run it altogether?
>
> lintOptions {
>     abortOnError false
> }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to