diff --git a/lint.gradle b/lint.gradle index 1ae9d3211a..478f819096 100644 --- a/lint.gradle +++ b/lint.gradle @@ -11,5 +11,10 @@ android { // To output the lint report to stdout set textReport=true, and leave textOutput unset. textReport true warningsAsErrors true + + if (System.getenv("CI") == "true") { + // 14853: we want this to appear in the IDE, but it adds noise to CI + disable += "WrongThread" + } } } \ No newline at end of file