summaryrefslogtreecommitdiff
path: root/ui/i18n/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'ui/i18n/build.gradle')
-rw-r--r--ui/i18n/build.gradle15
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/i18n/build.gradle b/ui/i18n/build.gradle
new file mode 100644
index 000000000..a1ace417b
--- /dev/null
+++ b/ui/i18n/build.gradle
@@ -0,0 +1,15 @@
+plugins {
+ id("com.android.library")
+}
+apply from: "../../common.gradle"
+
+android {
+ lintOptions {
+ disable "Typos", "ExtraTranslation", "ImpliedQuantity",
+ "PluralsCandidate", "UnusedQuantity", "TypographyEllipsis"
+ }
+}
+
+dependencies {
+ annotationProcessor "androidx.annotation:annotation:$annotationVersion"
+}