28 lines
996 B
Diff
28 lines
996 B
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Sun, 24 Jun 2018 01:51:49 +0200
|
|
Subject: lint: suppress hardcoded text warnings
|
|
|
|
---
|
|
build/android/lint/suppressions.xml | 6 ++----
|
|
1 file changed, 2 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/build/android/lint/suppressions.xml b/build/android/lint/suppressions.xml
|
|
--- a/build/android/lint/suppressions.xml
|
|
+++ b/build/android/lint/suppressions.xml
|
|
@@ -92,10 +92,8 @@ Still reading?
|
|
<ignore regexp="chromecast/internal" />
|
|
<ignore regexp="remoting/android/java/src/org/chromium/chromoting/TapGestureDetector.java" />
|
|
</issue>
|
|
- <issue id="HardcodedDebugMode" severity="Fatal">
|
|
- <ignore path="AndroidManifest.xml"/>
|
|
- </issue>
|
|
- <issue id="HardcodedText" severity="Error">
|
|
+ <issue id="HardcodedDebugMode" severity="Fatal" />
|
|
+ <issue id="HardcodedText" severity="ignore">
|
|
<ignore regexp="chromecast/internal"/>
|
|
<ignore regexp="remoting/android/host/res/layout/main.xml"/>
|
|
</issue>
|
|
--
|
|
2.7.4
|
|
|