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