Skip to content

Instantly share code, notes, and snippets.

@blazsolar
Last active August 29, 2015 14:00
Show Gist options
  • Save blazsolar/11210974 to your computer and use it in GitHub Desktop.
Save blazsolar/11210974 to your computer and use it in GitHub Desktop.
Android lint configuration for crashlytics plugin
android {
lintOptions {
lintConfig file("lint.xml")
}
}
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="UnusedResources" severity="ignore">
<ignore path="app/src/main/res/values/com_crashlytics_export_strings.xml" />
</issue>
<issue id="TypographyDashes" severity="ignore">
<ignore path="app/src/main/res/values/com_crashlytics_export_strings.xml" />
</issue>
</lint>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment