2022-02-23 00:22:51 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
|
|
|
apply from: "../../playFlavor.gradle"
|
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.ui.statistics"
|
|
|
|
}
|
|
|
|
|
2022-02-23 00:22:51 +01:00
|
|
|
dependencies {
|
2022-05-24 19:40:40 +02:00
|
|
|
implementation project(":event")
|
2022-02-23 00:22:51 +01:00
|
|
|
implementation project(":model")
|
2024-03-25 21:45:43 +01:00
|
|
|
implementation project(':storage:database')
|
2022-05-24 19:40:40 +02:00
|
|
|
implementation project(":ui:app-start-intent")
|
2022-02-23 00:22:51 +01:00
|
|
|
implementation project(":ui:common")
|
2024-03-29 08:55:13 +01:00
|
|
|
implementation project(":ui:echo")
|
2022-02-23 00:22:51 +01:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
|
|
implementation "androidx.core:core:$coreVersion"
|
|
|
|
implementation "androidx.fragment:fragment:$fragmentVersion"
|
|
|
|
implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
|
|
|
|
implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
|
|
|
|
implementation "com.google.android.material:material:$googleMaterialVersion"
|
|
|
|
|
2022-03-05 10:43:31 +01:00
|
|
|
implementation "org.greenrobot:eventbus:$eventbusVersion"
|
2022-02-23 00:22:51 +01:00
|
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
|
|
|
implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
|
|
|
|
implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
|
|
|
|
}
|