AntennaPod/ui/png-icons/build.gradle
ByteHamster c72fd81886 Move common gradle setup to a single file
Original idea by @TacoTheDank
2021-05-11 22:38:46 +02:00

15 lines
369 B
Groovy

apply plugin: "com.android.library"
apply from: "../../common.gradle"
android {
defaultConfig {
vectorDrawables.useSupportLibrary false
vectorDrawables.generatedDensities = null
}
}
dependencies {
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
}