summaryrefslogtreecommitdiff
path: root/ui/widget/build.gradle
blob: 03183a323b654ad2d12fcaf3a6b8bafcbd353c59 (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:glide')
    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"
}