2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-05-11 22:14:56 +02:00
|
|
|
apply from: "../../common.gradle"
|
2021-02-12 21:00:39 +01:00
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.ui.common"
|
2024-04-07 23:28:14 +02:00
|
|
|
|
|
|
|
lint {
|
|
|
|
disable 'VectorPath'
|
|
|
|
}
|
2023-10-17 20:52:21 +02:00
|
|
|
}
|
|
|
|
|
2021-02-12 21:00:39 +01:00
|
|
|
dependencies {
|
2024-03-17 18:43:55 +01:00
|
|
|
implementation project(":storage:preferences")
|
2023-10-06 18:24:13 +02:00
|
|
|
implementation project(":ui:i18n")
|
|
|
|
|
2021-02-12 21:00:39 +01:00
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
2022-02-23 00:22:51 +01:00
|
|
|
implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
|
|
|
|
implementation "com.google.android.material:material:$googleMaterialVersion"
|
2024-03-17 18:43:55 +01:00
|
|
|
implementation "androidx.core:core-splashscreen:1.0.0"
|
2024-04-05 19:20:27 +02:00
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
2024-03-31 18:40:15 +02:00
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2021-02-12 21:00:39 +01:00
|
|
|
}
|