2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-05-11 22:14:56 +02:00
|
|
|
apply from: "../../common.gradle"
|
|
|
|
apply from: "../../playFlavor.gradle"
|
2021-03-01 16:21:39 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
2022-05-24 19:46:49 +02:00
|
|
|
|
2021-03-01 16:21:39 +01:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
|
|
|
|
2022-05-24 19:46:49 +02:00
|
|
|
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'
|
2021-03-01 16:21:39 +01:00
|
|
|
}
|