blob: 19d25dd8c92bb50485b8e0e1c170f2b0ddb042a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
android {
namespace "de.danoeh.antennapod.ui.widget"
defaultConfig {
vectorDrawables.useSupportLibrary false
vectorDrawables.generatedDensities = ["xhdpi"]
}
lint {
disable "IconMissingDensityFolder"
}
}
dependencies {
implementation project(":model")
implementation project(":playback:base")
implementation project(':storage:preferences')
implementation project(':storage:database')
implementation project(":ui:app-start-intent")
implementation project(":ui:common")
implementation project(":ui:episodes")
implementation project(':ui:i18n')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "androidx.work:work-runtime:$workManagerVersion"
implementation "com.github.bumptech.glide:glide:$glideVersion"
implementation "com.google.guava:guava:31.0.1-android"
}
|