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"
|
|
|
|
|
2021-12-04 19:01:22 +01:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
2021-08-28 00:12:48 +02:00
|
|
|
}
|