Commit 4b946fb2 authored by Mugurell's avatar Mugurell Committed by Sebastian Kaspari
Browse files

For #21861 - Ignore the UnusedResources lint check for localized strings

parent 6fb35cd7
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -50,7 +50,11 @@
    <!-- Performance: checks we'd like to eventually set to error. -->
    <issue id="UseCompoundDrawables" severity="warning" />
    <issue id="Overdraw" severity="warning" />
    <issue id="UnusedResources" severity="error" />
    <issue id="UnusedResources" severity="error">
        <!-- Using an automated process to remove localized strings after they are removed from the default strings.xml
        means the files for localized strings will contain unused resources for a few days after the original removal operation. -->
        <ignore path="**/values-*/strings.xml" />
    </issue>

    <!-- Performance: checks that we're unsure of the value of that we might want to investigate. -->
    <issue id="UnpackedNativeCode" severity="informational" />