8
votes

I'm using Expo to code my apps with React-Native. I can test my apps on Android devices running them from the Expo client app or building an APK and running it as standalone.

On iOS I can run my app from the Expo client but I couldn't find a way to run the app as standalone. In this case, I would like to test the "native" facebook login functionality.

Is it possible to run an app as standalone (without using the Expo client) on iOS?

Note: I'm trying to avoid going through TestFlight for this, that will make my workflow painfully slow. I am using Mac OS.

1
Are you using a Mac? I believe running/building it without Expo on iOS requires xCode.rlwheeler
Yes, I'm using a mac. Will add this to the question.Agu Dondo

1 Answers

8
votes
  1. Run expo build:ios -t simulator to create an iOS standalone simulator build.
  2. Wait for build to finish, then download and unpack YourAppName.tar.gz
  3. Start an iOS simulator and run xcrun simctl install booted YourAppName.app