Today I Learned

hashrocket A Hashrocket project

Download and Run an Expo Build on Simulator

If you're using EAS to build your Expo app, you can build then install it with the following command:

eas build --platform ios

Of course, the caveat here is that you must wait for the build to finish.

But, if you already have a build in EAS and you just want to install it on your local simulator, you can use:

eas build:run --platform ios

https://docs.expo.dev/build-reference/simulators/

See More #mobile TILs