28 lines
787 B
Groovy
28 lines
787 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
id("java-test-fixtures")
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
apply from: "../../../common.gradle"
|
|
|
|
android {
|
|
namespace "ac.mdiq.podcini.net.download.serviceinterface"
|
|
|
|
lint {
|
|
disable 'ParcelClassLoader'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
implementation project(':net:common')
|
|
implementation "androidx.core:core-ktx:$coreVersion"
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
// testImplementation "org.junit.jupiter:junit-jupiter-api:$junit5Version"
|
|
// testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
|
}
|