From 887f8ee93b7e46488df8620fe8b8405cd64715e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Pich?= Date: Fri, 10 Jan 2020 15:14:46 +0100 Subject: [PATCH] Downgrade okhttp to 3.12.6 https://github.com/square/okhttp/issues/5713 https://stackoverflow.com/questions/8183205/what-could-be-the-cause-of-rejectedexecutionexception/8183463 --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7c49876c..54451427 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ ext { GIT_URL = 'https://github.com/wulkanowy/sdk.git' jspoon = "1.3.2" - okhttp3 = "3.12.7" + okhttp3 = "3.12.6" retrofit = "2.6.4" threetenbp = "1.4.0" slf4j = "1.7.30" @@ -128,4 +128,6 @@ dependencies { compile project(":sdk") compile project(":sdk-mobile") compile project(":sdk-scrapper") + + compile "com.squareup.okhttp3:okhttp:$okhttp3" }