AntennaPod/parser/feed/build.gradle

24 lines
648 B
Groovy
Raw Normal View History

2021-08-28 00:12:48 +02:00
apply plugin: "com.android.library"
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
}