13 lines
316 B
Groovy
13 lines
316 B
Groovy
apply plugin: "com.android.library"
|
|
apply from: "../../common.gradle"
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|