summaryrefslogtreecommitdiff
path: root/net/common/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'net/common/build.gradle')
-rw-r--r--net/common/build.gradle12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/common/build.gradle b/net/common/build.gradle
new file mode 100644
index 000000000..c519aa653
--- /dev/null
+++ b/net/common/build.gradle
@@ -0,0 +1,12 @@
+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"
+}