From 0133cffc0717a07592fb22ca7a60efe3cf2d02d9 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Thu, 14 Jul 2022 02:32:21 -0400 Subject: [PATCH] https://rusefi.com/forum/viewtopic.php?f=5&t=2373 one step back --- java_console/autoupdate/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java_console/autoupdate/build.gradle b/java_console/autoupdate/build.gradle index 250e90c60c..0745f7ffed 100644 --- a/java_console/autoupdate/build.gradle +++ b/java_console/autoupdate/build.gradle @@ -15,7 +15,8 @@ dependencies { api group: 'net.jcip', name: 'jcip-annotations', version: '1.0' api group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' - api group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12' + // not 'api' since Android would use own implementation + implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12' // junit 4.13 does not mix well with httpclient :( testImplementation group: 'junit', name: 'junit', version: '4.8.2'