mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-11 08:28:52 +01:00
13 lines
260 B
Groovy
13 lines
260 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|