From 1b043eb9572b74e3d9b967d48f9a7f1f200da721 Mon Sep 17 00:00:00 2001 From: Scott Kyle Date: Wed, 17 Feb 2016 14:36:58 -0800 Subject: [PATCH] Update everything to use React Native 0.20.0 --- examples/ReactExample/android/app/build.gradle | 2 +- examples/ReactExample/package.json | 2 +- examples/ReactNativeBenchmarks/android/app/build.gradle | 2 +- examples/ReactNativeBenchmarks/package.json | 2 +- react-native/android/build.gradle | 2 +- react-native/android/publish_android_template | 2 +- tests/react-test-app/android/app/build.gradle | 2 +- tests/react-test-app/package.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/ReactExample/android/app/build.gradle b/examples/ReactExample/android/app/build.gradle index 18f845a3..e0932c28 100644 --- a/examples/ReactExample/android/app/build.gradle +++ b/examples/ReactExample/android/app/build.gradle @@ -73,6 +73,6 @@ android { dependencies { compile 'com.android.support:appcompat-v7:23.0.1' - compile 'com.facebook.react:react-native:0.18.0' + compile 'com.facebook.react:react-native:0.20.+' compile project(':realm') } diff --git a/examples/ReactExample/package.json b/examples/ReactExample/package.json index 956170e8..16bacf1a 100644 --- a/examples/ReactExample/package.json +++ b/examples/ReactExample/package.json @@ -6,7 +6,7 @@ "start": "react-native start" }, "dependencies": { - "react-native": "0.18.0", + "react-native": "^0.20.0", "realm": "file:../.." } } diff --git a/examples/ReactNativeBenchmarks/android/app/build.gradle b/examples/ReactNativeBenchmarks/android/app/build.gradle index 03c19de7..75b748c0 100644 --- a/examples/ReactNativeBenchmarks/android/app/build.gradle +++ b/examples/ReactNativeBenchmarks/android/app/build.gradle @@ -120,7 +120,7 @@ android { dependencies { compile fileTree(dir: "libs", include: ["*.jar"]) compile "com.android.support:appcompat-v7:23.0.1" - compile "com.facebook.react:react-native:0.19.+" + compile "com.facebook.react:react-native:0.20.+" compile project(":realm") compile project(':react-native-sqlite-storage') diff --git a/examples/ReactNativeBenchmarks/package.json b/examples/ReactNativeBenchmarks/package.json index 0dd4090c..ef1b8947 100644 --- a/examples/ReactNativeBenchmarks/package.json +++ b/examples/ReactNativeBenchmarks/package.json @@ -6,7 +6,7 @@ "start": "react-native start" }, "dependencies": { - "react-native": "0.19.0", + "react-native": "^0.20.0", "react-native-sqlite-storage": "^2.1.3", "react-native-store": "^0.4.1", "realm": "file:../.." diff --git a/react-native/android/build.gradle b/react-native/android/build.gradle index e9c6082c..f4d4e3ba 100644 --- a/react-native/android/build.gradle +++ b/react-native/android/build.gradle @@ -285,5 +285,5 @@ afterEvaluate { project -> dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'org.nanohttpd:nanohttpd:2.2.0' - compile 'com.facebook.react:react-native:0.19.+' + compile 'com.facebook.react:react-native:0.20.+' } diff --git a/react-native/android/publish_android_template b/react-native/android/publish_android_template index 7a82ae97..c82b1f3d 100644 --- a/react-native/android/publish_android_template +++ b/react-native/android/publish_android_template @@ -29,5 +29,5 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'org.nanohttpd:nanohttpd:2.2.0' - compile 'com.facebook.react:react-native:0.19.+' + compile 'com.facebook.react:react-native:0.20.+' } diff --git a/tests/react-test-app/android/app/build.gradle b/tests/react-test-app/android/app/build.gradle index ea383ba9..969d384a 100644 --- a/tests/react-test-app/android/app/build.gradle +++ b/tests/react-test-app/android/app/build.gradle @@ -74,7 +74,7 @@ android { dependencies { compile 'com.android.support:appcompat-v7:23.0.1' - compile 'com.facebook.react:react-native:0.18.0' + compile 'com.facebook.react:react-native:0.20.+' compile project(':realm') compile project(':react-native-fs') } diff --git a/tests/react-test-app/package.json b/tests/react-test-app/package.json index 4f59a351..20373194 100644 --- a/tests/react-test-app/package.json +++ b/tests/react-test-app/package.json @@ -6,7 +6,7 @@ "start": "react-native start" }, "dependencies": { - "react-native": "0.18.0", + "react-native": "^0.20.0", "react-native-fs": "^1.1.0", "xmlbuilder": "^4.2.1", "realm": "file:../..",