Skip to content

Commit

Permalink
Added lint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
duartebarbosadev committed Feb 13, 2025
1 parent 11e98e1 commit b59a2ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ android {
}
}

lint {
lintConfig = file("lint.xml")
}

packaging {
resources { // Make sure to exclude the license files as for some reason they are probing project from compilation
excludes += "/META-INF/{AL2.0,LGPL2.1}"
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="ExtraTranslation" severity="ignore" />
</lint>

0 comments on commit b59a2ff

Please sign in to comment.