Closed Lubron88 closed 5 months ago
Hey! π
The issue doesn't seem to contain a minimal reproduction.
Could you provide a snack or a link to a GitHub repository under your username that reproduces the problem?
@Lubron88 we build 0.73.5 and rnscreens fine for our app. did you try to delete the derived data folder and clean the Xcode build cache?
@philipheinser I manually deleted ~/Library/Developer/Xcode/DerivedData
(don't know how to clean XCode cache, I'm sorry) but still the same build failed when I try npx react-native run-ios
** BUILD FAILED **
The following build commands failed:
Ld /Users/telemed/Library/Developer/Xcode/DerivedData/ETMHOMECROSS-avqdpcaltzlgykcghamktxvqeiyk/Build/Products/Debug-iphoneos/RNScreens/RNScreens.framework/RNScreens normal (in target 'RNScreens' from project 'Pods')
(1 failure)
@Lubron88 If you run it in Xcode you will get more details on why the build is failing. I would suggest to try to build it in Xcode and see what its says.
@philipheinser Nothing more than this
i have the same issue
I thought the problem was due to the fact that I'm developing on a MacMini with an M2 processor (arm64), but I tried to create a new project using Expo this time and following the installation procedures it works perfectly...strange
+1
I have the same problem on the M3 as well!
The following build commands failed: Ld /Users/e.hakawati/Library/Developer/Xcode/DerivedData/softfeeder-ctudookkecojqieymgkfvxaowdbc/Build/Products/Debug-iphonesimulator/RNScreens/RNScreens.framework/RNScreens normal (in target 'RNScreens' from project 'Pods')
Β To reproduce the issue Β 1- Upgrade react-native to 0.73.5 2- Update dependencies 3- run pod install.
I have the same issue. It happened after I upgraded to react 0.73.6 from 0.73.3. I have cleans the pods folder, nodes folder, and clean the build, and still nothing.
The current fix:
Change the react-native-screens version to:
"react-native-screens": "3.29.0"
https://github.com/software-mansion/react-native-screens/issues/2082
Hi guys! Sorry for a pretty late delay, I've needed to finalize some of the things in screens π Unfortunately, I cannot reproduce this bug for now. Do you know if this error happens on mac mini? Currently, I'm on a MacBook with M2 Pro chip and my build passes correctly with the newest version of RN and Screens. Could you send a file with a whole build log?
My dependencies:
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-safe-area-context": "^4.9.0",
"react-native-screens": "^3.30.1"
After i add use_frameworks! in Podfile, this error came up
Hey, I'm going to close this issue because:
Not closing the discussion though, ping me if any new relevant detail emerges.
Description
Hi everyone
I'm developing a brand new iOS/Android app and I want to use a single code, so I decided to use ReactNative for my pourpouses, and I want to build myself the executable instead of using something like Expo for remote building, so I bought a MacMini with Apple M2 processor where I connected my Android and iOS physical devices (where i'll run my project).
I'm using VisualStudioCode as IDE and did all the passages to install ReactNative (v0.73.5) and everything goes well, I have my base project that runs perfectly using
npm start
and running both version on my devices without problems.
The problem came when I try to add navigation-container in my project; I followed the guide (https://reactnavigation.org/docs/getting-started/) for version 6.x and installed native stack navigator library too (https://reactnavigation.org/docs/hello-react-navigation) and write a simple code to automatically switch from project start (App.tsx) to a splash page, like this:
and run it using
npx react-native run-ios
andnpx react-native run-android
. On Android everything works well, and I land in my splash screen as I intended, but on iOS I can't even build and run anything: I got this errorwhile using npm start and typing "i" the build stucks with no error while compiling
The output stops without saying anything else...
I think I got some conflicts on Pods, but I can't get any info about what and how to resolve.
I also tried to clear my node_modules folder and package-lock.json file, re-install packages with npm adn pod install, but I still had the same issue, adding another failure:
Thanks in advance
Steps to reproduce
npx react-native run-ios
Snack or a link to a repository
Can't reproduce on Snack just because i don't use Expo
Screens version
^3.29.0
React Native version
0.73.5
Platforms
iOS
JavaScript runtime
Hermes
Workflow
React Native (without Expo)
Architecture
None
Build type
Debug mode
Device
Real device
Device model
iPhone 14
Acknowledgements
Yes