AntennaPod/ui/notifications/build.gradle

22 lines
511 B
Groovy
Raw Normal View History

2022-02-09 17:28:40 +01:00
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
android {
namespace "de.danoeh.antennapod.ui.notifications"
2023-10-17 20:52:21 +02:00
defaultConfig {
vectorDrawables.useSupportLibrary false
2021-07-24 09:31:49 +02:00
vectorDrawables.generatedDensities = ["xhdpi"]
}
}
dependencies {
implementation project(':storage:preferences')
implementation project(':ui:i18n')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.core:core:$coreVersion"
}