summaryrefslogtreecommitdiff
path: root/ui/i18n/build.gradle
blob: c903d0e9401e4b9f24f00c31de36a35a66a876a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"

android {
    namespace "de.danoeh.antennapod.ui.i18n"

    lint {
        disable "Typos", "ExtraTranslation", "ImpliedQuantity",
                "PluralsCandidate", "UnusedQuantity", "TypographyEllipsis"
    }
}

dependencies {
    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
}