react-native/docs/RunningOnDeviceIOS.md

47 lines
2.1 KiB
Markdown
Raw Normal View History

2015-04-02 17:41:22 +00:00
---
id: running-on-device-ios
title: Running On Device
2015-04-02 17:41:22 +00:00
layout: docs
category: Guides (iOS)
permalink: docs/running-on-device-ios.html
next: embedded-app-ios
2015-04-02 17:41:22 +00:00
---
Note that running on device requires [Apple Developer account](https://developer.apple.com/register) and provisioning your iPhone. This guide covers only React Native specific topic.
2015-04-02 17:41:22 +00:00
## Accessing development server from device
You can iterate quickly on device using development server. To do that, your laptop and your phone have to be on the same wifi network.
2015-09-19 20:56:21 +00:00
1. Open `AwesomeApp/ios/AwesomeApp/AppDelegate.m`
2015-04-02 17:41:22 +00:00
2. Change the IP in the URL from `localhost` to your laptop's IP
3. In Xcode select your phone as build target and press "Build and run"
> Hint
>
> Shake the device to open development menu (reload, debug, etc.)
2015-04-02 17:41:22 +00:00
## Using offline bundle
You can also pack all the JavaScript code within the app itself. This way you can test it without development server running and submit the app to the AppStore.
2015-09-19 20:56:21 +00:00
1. Open `AwesomeApp/ios/AwesomeApp/AppDelegate.m`
2015-04-02 17:41:22 +00:00
2. Follow the instructions for "OPTION 2":
* Uncomment `jsCodeLocation = [[NSBundle mainBundle] ...`
2015-04-21 00:00:39 +00:00
* Run the `react-native bundle` command in terminal from the root directory of your app
2015-04-02 17:41:22 +00:00
2015-04-21 00:00:39 +00:00
The bundle script supports a couple of flags:
2015-04-02 17:41:22 +00:00
2015-04-21 00:00:39 +00:00
* `--dev` - sets the value of `__DEV__` variable to true. When `true` it turns on a bunch of useful development warnings. For production it is recommended to set `__DEV__=false`.
* `--minify` - pipe the JS code through UglifyJS.
2015-04-02 17:41:22 +00:00
2015-04-29 23:59:50 +00:00
## Disabling in-app developer menu
When building your app for production, your app's scheme should be set to `Release` as detailed in [the debugging documentation](/react-native/docs/debugging.html#debugging-react-native-apps) in order to disable the in-app developer menu.
2015-04-02 17:41:22 +00:00
## Troubleshooting
If `curl` command fails make sure the packager is running. Also try adding `--ipv4` flag to the end of it.
If you started your project a while ago, `main.jsbundle` might not be included into Xcode project. To add it, right click on your project directory and click "Add Files to ..." - choose the `main.jsbundle` file that you generated.