mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-18 20:01:33 +01:00
c72fd81886
Original idea by @TacoTheDank
15 lines
369 B
Groovy
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"
|
|
}
|