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.
- Run
exp build:ios -t simulatorto create an iOS standalone simulator build - Wait for build to finish then download and unpack YourAppName.tar.gz
- Start iOS simulator and run
xcrun simctl install booted YourAppName.app
来源:https://stackoverflow.com/questions/51567839/expo-react-native-is-it-there-a-way-to-test-run-standalone-ios-apps-on-a-devi