Update GettingStarted.md (Windows Packager)

Summary:
After pull request #12755 it is no longer necessary to manually start the packager on Windows using `react-native start`. I've updated the documentation to reflect this change, and match the Mac OS - Android instructions (same commands used to launch a project now).
Closes https://github.com/facebook/react-native/pull/13186

Differential Revision: D4790827

Pulled By: hramos

fbshipit-source-id: 5fe5f7ed20ac4b3ee537c95a9b6d7b91fd578c41
This commit is contained in:
jrodiger 2017-03-28 17:14:55 -07:00 коммит произвёл Facebook Github Bot
Родитель 63035a4c08
Коммит fd6f22253a
1 изменённых файлов: 1 добавлений и 7 удалений

Просмотреть файл

@ -366,17 +366,11 @@ Congratulations! You've successfully run and modified your first React Native ap
## Testing your React Native Installation
Use the React Native command line interface to generate a new React Native project called "AwesomeProject", then run `react-native start` inside the newly created folder to start the packager.
Use the React Native command line interface to generate a new React Native project called "AwesomeProject", then run `react-native run-android` inside the newly created folder:
```
react-native init AwesomeProject
cd AwesomeProject
react-native start
```
Open a new command prompt and run `react-native run-android` inside the same folder to launch the app on your Android emulator.
```
react-native run-android
```