Browse Source

Set OldTargetApi to a warning (#3836)

`OldTargetApi` default behaviour is to warn
(https://googlesamples.github.io/android-custom-lint-rules/checks/OldTargetApi.md.html)

Set it back to that, so that CI runs on runners with newer versions of
the SDK installed do not fail.
pull/3837/head
Nik Clayton 3 years ago committed by GitHub
parent
commit
2a04edc69b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      app/lint.xml

3
app/lint.xml

@ -40,6 +40,9 @@
how to add to it when it's wrong. -->
<issue id="Typos" severity="warning" />
<!-- Set OldTargetApi back to warning -->
<issue id="OldTargetApi" severity="warning" />
<!-- Mark all other lint issues as errors -->
<issue id="all" severity="error" />
</lint>

Loading…
Cancel
Save