blob: 2a47968d323caec5f273c2b24b139ff6cbfccd4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
apply plugin: "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"
}
|