Last active
February 9, 2016 20:16
-
-
Save patrickhammond/ac6bfa6608351825c57e to your computer and use it in GitHub Desktop.
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 { | |
abortOnError true | |
lintConfig file("${project.rootDir}/config/lint/lint.xml") | |
htmlReport true | |
} | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<lint> | |
<!-- See: https://android-review.googlesource.com/#/c/93190/1 --> | |
<issue id="InvalidPackage"> | |
<ignore regexp="okio-1.6.0.jar" /> | |
<ignore regexp="parceler-1.0.3.jar" /> | |
</issue> | |
<issue id="RtlHardcoded" severity="ignore" /> | |
</lint> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment