LittleFunny
LittleFunny

Reputation: 8405

expo: Is it possible to build ios standalone app and run on device directly

I saw one of the post showing how to build and run standalone app on ios simulator

  1. Run exp 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 iOS simulator and run xcrun simctl install booted YourAppName.app

Is there a way to run directly on iOS device

Upvotes: 2

Views: 1277

Answers (1)

user5200349
user5200349

Reputation:

Apple has ‘simctl’ binary to interact with iOS simulators from command line.

xcrun simctl install booted yourappname.app

More information can be found here.

Upvotes: 0

Related Questions