2022-11-06 11:34:24 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
id("java-test-fixtures")
|
|
|
|
}
|
|
|
|
apply from: "../../../common.gradle"
|
2024-03-17 20:25:44 +01:00
|
|
|
apply from: "../../../playFlavor.gradle"
|
2022-11-06 11:34:24 +01:00
|
|
|
|
|
|
|
android {
|
2023-10-17 20:52:21 +02:00
|
|
|
namespace "de.danoeh.antennapod.net.download.serviceinterface"
|
|
|
|
|
2023-04-01 23:16:53 +02:00
|
|
|
lint {
|
2022-11-06 11:34:24 +01:00
|
|
|
disable 'ParcelClassLoader'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':model')
|
|
|
|
implementation project(':net:common')
|
2024-03-29 19:27:53 +01:00
|
|
|
implementation project(':storage:preferences')
|
2022-11-06 11:34:24 +01:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
2024-03-29 19:27:53 +01:00
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
2022-11-06 11:34:24 +01:00
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
|
|
|
}
|