blob: 9dfcd490368de2114cb52c956b7e74e305c9fe54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
android {
namespace "de.danoeh.antennapod.ui.episodes"
}
dependencies {
implementation project(":model")
implementation project(":storage:preferences")
implementation project(":ui:common")
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "androidx.core:core:$coreVersion"
implementation "com.google.android.material:material:$googleMaterialVersion"
}
|