blob: 09661bab67fc5fc90c7d121abd8fa734e4f42d9f [file] [log] [blame]
Ben Kwaa864d032016-02-02 10:07:15 -08001<?xml version="1.0" encoding="UTF-8"?>
2<lint>
Ben Kwaf4b0ff62016-02-02 12:11:10 -08003 <!--
4 Lint configuration for the framework-lint tool (go/fwlint). See
5 http://tools.android.com/tips/lint for full docs on the lint tool.
6 -->
7
8 <!-- min-sdk doesn't apply to platform apps. -->
Ben Kwaa864d032016-02-02 10:07:15 -08009 <issue id="UsesMinSdkAttributes" severity="ignore" />
10
Ben Kwaf4b0ff62016-02-02 12:11:10 -080011 <!-- Protected permissions don't apply to system apps. -->
Ben Kwaa864d032016-02-02 10:07:15 -080012 <issue id="ProtectedPermissions" severity="ignore" />
Ben Kwaf4b0ff62016-02-02 12:11:10 -080013
14 <!-- Other recommended suppressions copied from go/fwlint. -->
15 <issue id="Assert" severity="ignore" />
16 <issue id="ClickableViewAccessibility" severity="ignore" />
17 <issue id="GoogleAppIndexingWarning" severity="ignore" />
18 <issue id="MissingPermission" severity="ignore" />
19 <issue id="ParcelClassLoader" severity="ignore" />
20 <issue id="ParcelCreator" severity="ignore" />
21 <issue id="Registered" severity="ignore" />
22 <issue id="RtlHardcoded" severity="ignore" />
23 <issue id="ShiftFlags" severity="ignore" />
24 <issue id="SuspiciousImport" severity="ignore" />
25
26 <!-- Don't lint automatically translated strings. -->
27 <issue id="all">
28 <ignore path="res/values-*/strings.xml" />
29 </issue>
30
31 <!-- Don't warn about missing translations. -->
32 <issue id="MissingTranslation">
33 <ignore path="res/values/strings.xml" />
34 </issue>
35
Ben Kwaa864d032016-02-02 10:07:15 -080036</lint>