Use shell - su chaining for 1-command of flipper.port

Summary: Makes the command easier as this is a one-liner

Reviewed By: passy

Differential Revision: D13878049

fbshipit-source-id: 99477939e51524234ae06c42687ae3a2db31211e
This commit is contained in:
Lawrence Lomax
2019-01-31 03:47:28 -08:00
committed by Facebook Github Bot
parent 77811c66d2
commit 5b2f100943

View File

@@ -17,11 +17,7 @@ FLIPPER_PORTS=1111,2222 ./flipper
To configure the Android SDK for custom ports, set the `flipper.ports` prop to your chosen ports `1111,2222` like so, and then launch the Android app.
```
adb shell
su
setprop flipper.ports 1111,2222
exit
exit
adb shell su 0 setprop flipper.ports 1111,2222
```
To configure the iOS SDK for custom ports, set the FLIPPER_PORTS environment variable in your app launch script.