Replies: 2 comments 5 replies
-
Tried this out, thanks for this! I ran into a few problems we might want to additionally document in troubleshooting steps: TL;DR
Issues encountered
On my first attempt, after running
To fix the development team error, as well as find out more about why the compiler error was occurring, I decided to open the app in XCode and build it from there. Question: does that development team error occur normally on downloading the template? Is it expected we'll need to open the app in XCode and fix that first? Or is that just a warning that wouldn't normally prevent a build? After trying to build in XCode, I got an error I'm not quite familiar enough with cocoapods to figure out what went wrong, but today, attempting to pod install and build again seems to work, for both building from Xcode and command line. I'm going to try again with a fresh project and see if I can reproduce the issue again. |
Beta Was this translation helpful? Give feedback.
-
Happy to report that the TV repo now has a 0.68 branch that is even with 0.68.0-rc3. RNTester working on both Apple TV and Android TV, with new architecture enabled. Tracking this in react-native-tvos/react-native-tvos#281 . Still working on some fixes for the new app template, but I'm hoping to get a 0.68 TV release out at more or less the same time as the stable core 0.68 release goes out. |
Beta Was this translation helpful? Give feedback.
-
Hey all,
This discussion is to collect feedback, report bugs, and share opinions on the support for New Architecture inside React Native 0.68.
All the bugs discovered during the release process of 0.68 which are not related to the New Architecture, should be reported to this other thread:
Road to 0.68 react-native-releases#13How to enable the New Architecture in 0.68.x
You can try the New Architecture by following those steps:
npx react-native init MyApp --version next
(or specify a specific version instead ofnext
).RCT_NEW_ARCH_ENABLED=1 pod install
inside theios
folder.newArchEnabled=true
inside theandroid/gradle.properties
file.yarn react-native run-android
andyarn react-native run-ios
Beta Was this translation helpful? Give feedback.
All reactions