Getting your React Native App on an iOS device

Posted October 8th, 2015 • 2 min read

As I was playing around with the awesome React Native library I encountered a few small hicups getting an app running on an actual device, so here's how I made it work for me.

At the time of writing I've tested the following with:

I won't go into much detail on how to get a React Native project going on your computer, as the nice guys at Facebook do an excellent job explaining this process.

After you've opened your initial project (generated by react-native init <your-project>) in XCode you can run it on the simulator to verify it compiles and runs correctly.

Now, to get the app on your iPhone the documentation will want you to do the following:

  1. Open AwesomeApp/ios/AwesomeApp/AppDelegate.m
  2. Change the IP in the URL from localhost to your laptop's IP

This was not enough in my and my colleagues case. Additionally, you will want to do the following:

  1. Select the project in the navigator pane
  2. Go to the Build Settings tab
  3. Search for Dead Code Stripping and set it to NO

Once that's done you should be able to select your phone as build target and press "Build and run".

Of course, when you want to make a final build which doesn't require the device to be on the same WiFi as the computer you are serving the bundle.js file of off there's more steps, but with the above we could get Live Reloading on an actual device to work.

Happy Coding.

Stay up to date

Want to know when a new post comes out and stay in the loop on tips, tricks and gotchas? Consider signing up for the Mindthecode newsletter.

Comments

Keep reading

February 9th, 2013 • 2 min read
Trying not to touch the arrow keys, not use the h-j-k-l too extensively either, work with A and I a lot, and generally trying not to cock things up too much by hitting the wrong commands.
April 27th, 2020 • 35 min read
Exploring the options we have as developers to retrieve a large dataset. We will go through the process of finding the data we need, and then write the code to make that date ours in a format we can use.
September 18th, 2012 • 3 min read
A Boilerplate with best practices to kickstart your Spotify App