diff options
author | Xavier Ducrohet <xav@android.com> | 2012-02-03 13:26:54 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-02-03 13:27:52 -0800 |
commit | 9e194a1557584cde513b95321340a3b7c2e37792 (patch) | |
tree | c9790d2499efcdc40b9d40d75237bf3036f03741 | |
parent | 06e601f91bb83ca423248ac2ebaa83f9748c6a0d (diff) | |
download | frameworks_base-9e194a1557584cde513b95321340a3b7c2e37792.zip frameworks_base-9e194a1557584cde513b95321340a3b7c2e37792.tar.gz frameworks_base-9e194a1557584cde513b95321340a3b7c2e37792.tar.bz2 |
Add some lint control for the frameworks.
Change-Id: Ie80ffee31ca87da3e7f1031317f2d4c1a36640c8
-rw-r--r-- | core/res/lint.xml | 7 | ||||
-rw-r--r-- | packages/SystemUI/lint.xml | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/core/res/lint.xml b/core/res/lint.xml new file mode 100644 index 0000000..822cdd7 --- /dev/null +++ b/core/res/lint.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<lint> + <!-- temporary until we add frameworks support --> + <issue id="UnusedResources" severity="ignore" /> + + <issue id="PrivateResource" severity="ignore" /> +</lint>
\ No newline at end of file diff --git a/packages/SystemUI/lint.xml b/packages/SystemUI/lint.xml new file mode 100644 index 0000000..59a7109 --- /dev/null +++ b/packages/SystemUI/lint.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<lint> + <issue id="PrivateResource" severity="ignore" /> +</lint>
\ No newline at end of file |