From 764c65deed70fcb96d9b3ba69a434d1c3ecdd515 Mon Sep 17 00:00:00 2001 From: Joe Hansche Date: Thu, 23 Jul 2020 13:35:51 -0400 Subject: [PATCH] Rollback OkHttp version (#113) OkHttp v3.13 bumps minSdkVersion to 21 (Android 5.0). To maintain maximum compatibility, we can stick to OkHttp v3.12. --- ParseLiveQuery/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ParseLiveQuery/build.gradle b/ParseLiveQuery/build.gradle index 5ae40df..f0a3b46 100644 --- a/ParseLiveQuery/build.gradle +++ b/ParseLiveQuery/build.gradle @@ -25,7 +25,9 @@ android { dependencies { api "com.github.parse-community.Parse-SDK-Android:parse:1.24.2" - api "com.squareup.okhttp3:okhttp:3.14.4" + + // Note: Don't update past 3.12.x, as it sets the minSdk to Android 5.0 + api "com.squareup.okhttp3:okhttp:3.12.10" testImplementation "org.robolectric:robolectric:3.3.1" testImplementation "org.skyscreamer:jsonassert:1.5.0"