blob: a1d344492491a276b3ebafff8204613e210d8ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
apply plugin: "com.android.library"
apply from: "../../common.gradle"
dependencies {
implementation project(':model')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
testImplementation "junit:junit:$junitVersion"
}
|