From a3551b081aeae8f2396d5dc26d3e034aaf7aefac Mon Sep 17 00:00:00 2001 From: Mike Lambert Date: Mon, 10 Oct 2016 14:00:01 -0700 Subject: [PATCH] Remove version from "line to delete" since we no longer use versions. Summary: It seems everything pushes for "com.facebook.react:react-native:+" these days, so just updating the docs to match. Closes https://github.com/facebook/react-native/pull/9955 Differential Revision: D3997456 Pulled By: hramos fbshipit-source-id: 45b1b3437c6bcd9992ee000cb1353ae3c19c4d47 --- docs/AndroidBuildingFromSource.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/AndroidBuildingFromSource.md b/docs/AndroidBuildingFromSource.md index f583faaba..9feb8d86c 100644 --- a/docs/AndroidBuildingFromSource.md +++ b/docs/AndroidBuildingFromSource.md @@ -97,7 +97,7 @@ project(':ReactAndroid').projectDir = new File( ... ``` -Modify your `android/app/build.gradle` to use the `:ReactAndroid` project instead of the pre-compiled library, e.g. - replace `compile 'com.facebook.react:react-native:0.16.+'` with `compile project(':ReactAndroid')`: +Modify your `android/app/build.gradle` to use the `:ReactAndroid` project instead of the pre-compiled library, e.g. - replace `compile 'com.facebook.react:react-native:+'` with `compile project(':ReactAndroid')`: ```gradle ...