App is crashing in iOS emulator with release react-native version 0.70.0
See original GitHub issueDescription
The app is not running in emulator iOS after new release to version react-native 0.70.0
Yesterday, I was trying to create a new project through npx react-native init <project_name> --template react-native-template-typescript
and when I build the application with npx react-native run-ios
the app installed at emulator but when I try to open it, it crash and send a notification that the application has been closed.
Then I did a new app but defined the version react-native init <project_name> --template react-native-template-typescript@6.11.9
and everything is working fine.
In Android, I don’t have the issue. It’s just for iOS.
Version
0.70.0
Output of npx react-native info
System: OS: macOS 12.5.1 CPU: (16) x64 Intel® Core™ i9-9880H CPU @ 2.30GHz Memory: 471.18 MB / 16.00 GB Shell: 5.8.1 - /bin/zsh Binaries: Node: 18.0.0 - ~/.nvm/versions/node/v18.0.0/bin/node Yarn: 1.22.18 - /usr/local/bin/yarn npm: 8.9.0 - ~/.nvm/versions/node/v18.0.0/bin/npm Watchman: 2022.09.05.00 - /usr/local/bin/watchman Managers: CocoaPods: 1.10.2 - /Users/<user>/.asdf/shims/pod SDKs: iOS SDK: Platforms: DriverKit 21.4, iOS 15.5, macOS 12.3, tvOS 15.4, watchOS 8.5 Android SDK: Not Found IDEs: Android Studio: 2021.2 AI-212.5712.43.2112.8815526 Xcode: 13.4.1/13F100 - /usr/bin/xcodebuild Languages: Java: 11.0.2 - /Users/<user>/.sdkman/candidates/java/current/bin/javac npmPackages: @react-native-community/cli: Not Found react: 18.0.0 => 18.0.0 react-native: 0.69.5 => 0.69.5 react-native-macos: Not Found npmGlobalPackages: react-native: Not Found
Steps to reproduce
- Create a new App using
npx react-native init <project_name> --template react-native-template-typescript
- cd <new_folder_app>
- Init app using
npx react-native run-ios
- App crashes on iOS emulator.
Snack, code example, screenshot, or link to a repository
none
Issue Analytics
- State:
- Created a year ago
- Reactions:8
- Comments:7
Top GitHub Comments
i updated from 0.70.0 to 0.70.6 and it works for me now
I have the same issue, in GitHub action macos-12.
We also use
bundle
,bundle install
,cd ios && bundle exec pod install
, we also useruby 2.7.5
, nothing we tried work. React Native 0.68.5, any clue how we can do ?