mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-28 17:52:29 +01:00
16 lines
312 B
Groovy
16 lines
312 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
defaultConfig {
|
|
vectorDrawables.useSupportLibrary false
|
|
vectorDrawables.generatedDensities = ["xhdpi"]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
}
|