From 349c3b33675e761ece177884da35cebcd8fc82c0 Mon Sep 17 00:00:00 2001 From: Mikael Sand Date: Fri, 12 Oct 2018 16:04:59 +0300 Subject: [PATCH] Rebase pull request #807 from agustin107/master Update README.md, changing dependency configuration for Android platform --- README.md | 2 +- android/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8ff3b230f..6da9d9f02 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ 3. Insert the following lines inside the dependencies block in `android/app/build.gradle`: ``` - compile project(':react-native-svg') + implementation project(':react-native-svg') ``` 4. Open up `android/app/src/main/java/[...]/MainApplication.java diff --git a/android/build.gradle b/android/build.gradle index 19992bdbd..fc69929ae 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -49,5 +49,5 @@ repositories { dependencies { //noinspection GradleDynamicVersion - compile 'com.facebook.react:react-native:+' + implementation 'com.facebook.react:react-native:+' }