blob: a9cbffcbbbd423e7fe88dc9623045406570c1cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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"
}
|