mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-29 01:49:21 +01:00
22 lines
480 B
Groovy
22 lines
480 B
Groovy
|
plugins {
|
||
|
id("com.android.library")
|
||
|
id("java-test-fixtures")
|
||
|
}
|
||
|
apply from: "../../../common.gradle"
|
||
|
|
||
|
android {
|
||
|
lintOptions {
|
||
|
disable 'ParcelClassLoader'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':model')
|
||
|
implementation project(':net:common')
|
||
|
|
||
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
||
|
|
||
|
testImplementation "junit:junit:$junitVersion"
|
||
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
||
|
}
|