AntennaPod/ui/common/build.gradle

28 lines
834 B
Groovy
Raw Permalink Normal View History

2022-02-09 17:28:40 +01:00
plugins {
id("com.android.library")
}
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"
lint {
disable 'VectorPath'
}
2023-10-17 20:52:21 +02:00
}
2021-02-12 21:00:39 +01:00
dependencies {
implementation project(":storage:preferences")
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"
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"
testImplementation "junit:junit:$junitVersion"
2021-02-12 21:00:39 +01:00
}