From dabda9d29e789b165b44e87bfdce9d209ff91a35 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sun, 19 Apr 2020 20:34:45 -0700 Subject: [PATCH] manually specify okhttp3 version - use something newer with less api warnings --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 57ea85780..acf0e9b9d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -123,6 +123,9 @@ dependencies { // mapbox implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:9.1.0' + // mapbox specifies a really old version of okhttp3 which causes lots of API warnings. trying a newer version + implementation 'com.squareup.okhttp3:okhttp:4.5.0' + // location services implementation 'com.google.android.gms:play-services-location:17.0.0'