blob: f76823e2af2b420e7138b4179b30c21a37dc6a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
dependencies {
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
playImplementation "com.google.android.gms:play-services-base:$playServicesVersion"
freeImplementation "org.conscrypt:conscrypt-android:$conscryptVersion"
}
|