Created
July 15, 2019 20:41
-
-
Save VesperDev/790fcda768bfb866eb2c5cc3c77efe27 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In case anybody else stumbles here, my solution was different. | |
What fixed it for me was manually updating our node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js from | |
if (!version.startsWith('iOS') && !version.startsWith('tvOS')) | |
to | |
if (!version.startsWith('com.apple.CoreSimulator.SimRuntime.iOS') && !version.startsWith('com.apple.CoreSimulator.SimRuntime.tvOS')) | |
If you console.log(version), each is now prefixed with com.apple.CoreSimulator.SimRuntime. | |
ref: https://github.com/facebook/react-native/issues/21498 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment