blob: 0ac9d7110c73cda73692e2639ae1b5e6decc9158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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:17.5.0'
// This version should be updated regularly.
freeImplementation 'org.conscrypt:conscrypt-android:2.5.2'
}
|