2016-02-02 10:07:15 -08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<lint>
|
2016-02-02 12:11:10 -08:00
|
|
|
<!--
|
|
|
|
Lint configuration for the framework-lint tool (go/fwlint). See
|
|
|
|
http://tools.android.com/tips/lint for full docs on the lint tool.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- min-sdk doesn't apply to platform apps. -->
|
2016-02-02 10:07:15 -08:00
|
|
|
<issue id="UsesMinSdkAttributes" severity="ignore" />
|
|
|
|
|
2016-02-02 12:11:10 -08:00
|
|
|
<!-- Protected permissions don't apply to system apps. -->
|
2016-02-02 10:07:15 -08:00
|
|
|
<issue id="ProtectedPermissions" severity="ignore" />
|
2016-02-02 12:11:10 -08:00
|
|
|
|
|
|
|
<!-- Other recommended suppressions copied from go/fwlint. -->
|
|
|
|
<issue id="Assert" severity="ignore" />
|
|
|
|
<issue id="ClickableViewAccessibility" severity="ignore" />
|
|
|
|
<issue id="GoogleAppIndexingWarning" severity="ignore" />
|
|
|
|
<issue id="MissingPermission" severity="ignore" />
|
|
|
|
<issue id="ParcelClassLoader" severity="ignore" />
|
|
|
|
<issue id="ParcelCreator" severity="ignore" />
|
|
|
|
<issue id="Registered" severity="ignore" />
|
|
|
|
<issue id="RtlHardcoded" severity="ignore" />
|
|
|
|
<issue id="ShiftFlags" severity="ignore" />
|
|
|
|
<issue id="SuspiciousImport" severity="ignore" />
|
|
|
|
|
|
|
|
<!-- Don't lint automatically translated strings. -->
|
|
|
|
<issue id="all">
|
|
|
|
<ignore path="res/values-*/strings.xml" />
|
|
|
|
</issue>
|
|
|
|
|
|
|
|
<!-- Don't warn about missing translations. -->
|
|
|
|
<issue id="MissingTranslation">
|
|
|
|
<ignore path="res/values/strings.xml" />
|
|
|
|
</issue>
|
|
|
|
|
2016-02-02 10:07:15 -08:00
|
|
|
</lint>
|