From 08bc462ccd4130afc689de198a281bebb20d87b3 Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Tue, 21 Sep 2021 08:28:30 +0200 Subject: [PATCH] docs: use implementation instead of compile in gradle (#684) Reference: https://docs.gradle.org/current/userguide/upgrading_version_5.html#dependencies_should_no_longer_be_declared_using_the_compile_and_runtime_configurations --- src/site/markdown/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/markdown/installation.md b/src/site/markdown/installation.md index 1eb05d8..9063dbc 100644 --- a/src/site/markdown/installation.md +++ b/src/site/markdown/installation.md @@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`. Add it as a gradle dependency for Android Studio, in `build.gradle`: ```groovy -compile ('io.socket:socket.io-client:2.0.1') { +implementation ('io.socket:socket.io-client:2.0.1') { // excluding org.json which is provided by Android exclude group: 'org.json', module: 'json' }