36 lines
1.1 KiB
Groovy
36 lines
1.1 KiB
Groovy
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"
|
|
}
|