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