summaryrefslogtreecommitdiff
path: root/ui/i18n/build.gradle
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-02-24 20:42:20 +0100
committerGitHub <noreply@github.com>2022-02-24 20:42:20 +0100
commit0c1e0b85851da0e33042a7cb567b996a584774af (patch)
tree39efcc8fd8b3d95e7a3ccb623877e55be27e620e /ui/i18n/build.gradle
parentb6da9ae32912f378c4a715e63076de98d368bf1a (diff)
parentf5de90e522263ab8586f1e7e09b82387c047d87f (diff)
downloadAntennaPod-0c1e0b85851da0e33042a7cb567b996a584774af.zip
Merge pull request #5746 from ByteHamster/move-strings-to-module
Move strings files to their own module
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"
+}