mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-27 17:23:54 +01:00
16 lines
339 B
Groovy
16 lines
339 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
lint {
|
|
disable "Typos", "ExtraTranslation", "ImpliedQuantity",
|
|
"PluralsCandidate", "UnusedQuantity", "TypographyEllipsis"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
}
|