From c90c462b73deb9682048694aec84408caa427c8c Mon Sep 17 00:00:00 2001 From: Jimmy Dee Date: Wed, 15 Mar 2017 12:10:39 -0700 Subject: [PATCH] Remove requirement of RN 0.20.+ from build.gradle --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 9da141ac0..3b60c776e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -7,7 +7,7 @@ repositories { android { compileSdkVersion 23 - buildToolsVersion "23.0.1" + buildToolsVersion '25.0.0' defaultConfig { minSdkVersion 16 @@ -18,6 +18,6 @@ android { } dependencies { - compile 'com.facebook.react:react-native:0.20.+' + compile 'com.facebook.react:react-native:+' // from node_modules compile 'io.branch.sdk.android:library:2.+' }