Created
October 14, 2015 03:30
-
-
Save up1/ba719635d4fdbb1f67b3 to your computer and use it in GitHub Desktop.
Android Lint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
... | |
lintOptions { | |
// set to true to turn off analysis progress reporting by lint | |
quiet true | |
// if true, stop the gradle build if errors are found | |
abortOnError false | |
// if true, only report errors | |
ignoreWarnings true | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment