AntennaPod/parser/feed/build.gradle

26 lines
654 B
Groovy
Raw Normal View History

2022-02-09 17:28:40 +01:00
plugins {
id("com.android.library")
}
2021-08-28 00:12:48 +02:00
apply from: "../../common.gradle"
android {
lintOptions {
disable "TrustAllX509TrustManager"
}
}
dependencies {
implementation project(':model')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
2021-08-29 02:33:44 +02:00
implementation "androidx.core:core:$coreVersion"
2021-08-28 00:12:48 +02:00
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
implementation "commons-io:commons-io:$commonsioVersion"
implementation "org.jsoup:jsoup:$jsoupVersion"
testImplementation "junit:junit:$junitVersion"
testImplementation "org.robolectric:robolectric:$robolectricVersion"
2021-08-28 00:12:48 +02:00
}