13 lines
307 B
Groovy
13 lines
307 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:4.13'
|
||
|
}
|