Skip to content

Commit

Permalink
lint: Don't warn about missing translations
Browse files Browse the repository at this point in the history
Translations are done by volunteers and are not a hard requirement
for this project to have them.

Signed-off-by: Aayush Gupta <[email protected]>
  • Loading branch information
theimpulson committed Apr 2, 2024
1 parent efa1cd9 commit e2a7b1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ android {
}

lint {
lintConfig = file("lint.xml")
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
Expand Down
4 changes: 4 additions & 0 deletions app/lint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="MissingTranslation" severity="ignore" />
</lint>

0 comments on commit e2a7b1e

Please sign in to comment.