2022-02-22 23:43:03 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
|
|
|
|
|
|
|
android {
|
2023-10-17 20:52:21 +02:00
|
|
|
namespace "de.danoeh.antennapod.ui.i18n"
|
|
|
|
|
2023-04-01 23:16:53 +02:00
|
|
|
lint {
|
2022-02-22 23:43:03 +01:00
|
|
|
disable "Typos", "ExtraTranslation", "ImpliedQuantity",
|
|
|
|
"PluralsCandidate", "UnusedQuantity", "TypographyEllipsis"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
}
|