blob: a1ace417bdbb01ebbed64689e28ed772a1877e92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"
}
|