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
This commit is contained in:
Mike Lambert 2016-10-10 14:00:01 -07:00 committed by Facebook Github Bot
parent fd554c31c7
commit a3551b081a
1 changed files with 1 additions and 1 deletions

View File

@ -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
...