From 7362e6c6abb4cfa4270b84dcef3360cf767d458d Mon Sep 17 00:00:00 2001 From: Felix Schindler Date: Mon, 29 Oct 2018 13:26:46 +0100 Subject: [PATCH] fix(docs): gradle compile config depreciation PR facebook/react-native#20767 bumped the version of the Android Gradle Plugin to v3 which uses the newer Gradle dependency configurations `implementation` and `api` which make `compile` obsolete. PR facebook/react-native#20853 covered the `link` command. Using `compile` will result in a warning message during app build and `compile` will be eventually removed by Gradle. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22e95fa9..17f81f0f 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ project(':react-native-cookies').projectDir = new File(rootProject.projectDir, ' ```gradle dependencies { ... - compile project(':react-native-cookies') + implementation project(':react-native-cookies') } ```