diff options
Diffstat (limited to 'ui/notifications/build.gradle')
-rw-r--r-- | ui/notifications/build.gradle | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ui/notifications/build.gradle b/ui/notifications/build.gradle new file mode 100644 index 000000000..2a54372c2 --- /dev/null +++ b/ui/notifications/build.gradle @@ -0,0 +1,21 @@ +plugins { + id("com.android.library") +} +apply from: "../../common.gradle" + +android { + namespace "de.danoeh.antennapod.ui.notifications" + + defaultConfig { + vectorDrawables.useSupportLibrary false + vectorDrawables.generatedDensities = ["xhdpi"] + } +} + +dependencies { + implementation project(':storage:preferences') + implementation project(':ui:i18n') + + annotationProcessor "androidx.annotation:annotation:$annotationVersion" + implementation "androidx.core:core:$coreVersion" +} |