From 787e2730aa37b79f62fef6a84fefeec9d41453ee Mon Sep 17 00:00:00 2001 From: Andrew Rabon Date: Thu, 9 Feb 2017 12:49:30 -0800 Subject: [PATCH] Fix ADB reverse link + release build instructions Summary: ADB reverse link was broken, and the "release build" instructions did not work (--configuration doesn't exist.) Closes https://github.com/facebook/react-native/pull/12312 Differential Revision: D4538302 Pulled By: hramos fbshipit-source-id: 6d2e7ee07f9fad6080ed79bc8e0e4db11e6bbed3 --- docs/RunningOnDevice.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/RunningOnDevice.md b/docs/RunningOnDevice.md index 09480efa7..6339acd9a 100644 --- a/docs/RunningOnDevice.md +++ b/docs/RunningOnDevice.md @@ -145,11 +145,11 @@ Type the following in your command prompt to install and launch your app on the $ react-native run-android ``` -> If you get a "bridge configuration isn't available" error, see [Using adb reverse](#using-adb-reverse). +> If you get a "bridge configuration isn't available" error, see [Using adb reverse](docs/running-on-device.html#method-1-using-adb-reverse-recommended). > Hint > -> You can also use the `React Native CLI` to generate and run a `Release` build (e.g. `react-native run-android --configuration Release`). +> You can also use the `React Native CLI` to generate and run a `Release` build (e.g. `react-native run-android --variant=release`).