mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
23 lines
692 B
Markdown
23 lines
692 B
Markdown
# Connecting Devices
|
|
|
|
In order to work with React Native Storybook, one or more devices should be connected. Stories will only show when devices are available.
|
|
|
|
## iOS simulator
|
|
|
|
- Start with `react-native run-ios`
|
|
|
|
## Android emulator
|
|
|
|
- Get your AVD name with `emulator -list-avds`
|
|
- Start the emulator `emulator -avd MY_AVD_NAME`
|
|
- Forward port 8081 `adb reverse tcp:8081 tcp:8081`
|
|
- Forward port 9001 `adb reverse tcp:9001 tcp:9001`
|
|
- Start with `react-native run-android`
|
|
|
|
## Android device
|
|
|
|
- Connect your device with adb
|
|
- Forward port 8081 `adb reverse tcp:8081 tcp:8081`
|
|
- Forward port 9001 `adb reverse tcp:9001 tcp:9001`
|
|
- Start with `react-native run-android`
|