When you run "gradle lint" (e.g. not one of the specific variant lint tasks, such as "gradle lintDebug" or "gradle lintProDebug" or "gradle lintFreeRelease" etc) it will run lint repeatedly, for each variant, and then collate all the results together. Most errors it finds will be present in all variants, so those errors are just listed the way you would expect. But if an error is found in a subset of all the variants, then it will list those in the output (for example in the HTML report it will say "Applies to variants: <list>" or "Does not apply to variants: <list>" based on which one of those two lists is shorter.
-- Tor On Mon, May 26, 2014 at 8:01 AM, Diego Costantini < [email protected]> wrote: > I am trying to cleanup my resources and I realized that since only current > flavor and build type is highlighted, I am not sure how Lint considers the > others... > > -- > 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. > -- 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.
