13 lines
359 B
Groovy
13 lines
359 B
Groovy
|
plugins {
|
||
|
id("com.android.library")
|
||
|
}
|
||
|
apply from: "../../common.gradle"
|
||
|
|
||
|
dependencies {
|
||
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
||
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
||
|
|
||
|
testImplementation "junit:junit:$junitVersion"
|
||
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
||
|
}
|