Update google-services-base library (#5904)

This commit is contained in:
Taco 2022-05-24 13:46:49 -04:00 committed by GitHub
parent 687ed5f2ff
commit 8870463ec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View File

@ -62,12 +62,8 @@ project.ext {
exoPlayerVersion = "2.14.2"
audioPlayerVersion = "v2.0.0"
// Only used for free builds. This version should be updated regularly.
conscryptVersion = "2.5.2"
// Google Play build
wearableSupportVersion = "2.6.0"
playServicesVersion = "8.4.0"
//Tests
awaitilityVersion = "3.1.6"

View File

@ -7,8 +7,10 @@ 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"
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'
}