From bd938bef83bff14c83e2f242fafaeef0596b9fd9 Mon Sep 17 00:00:00 2001 From: Dmitry Gladkov Date: Fri, 6 May 2016 17:09:38 +0300 Subject: [PATCH] Use react-native dependency from node_modules on Android --- android/build.gradle | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 37462c0..50350dd 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:1.3.0' + classpath 'com.android.tools.build:gradle:1.3.1' } } @@ -25,10 +25,6 @@ android { } } -repositories { - mavenCentral() -} - dependencies { - compile 'com.facebook.react:react-native:0.19.+' + compile 'com.facebook.react:react-native:+' }