mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-25 16:23:54 +01:00
18 lines
362 B
Groovy
18 lines
362 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.ui.pngicons"
|
|
|
|
defaultConfig {
|
|
vectorDrawables.useSupportLibrary false
|
|
vectorDrawables.generatedDensities = ["xhdpi"]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
}
|