You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First I was faced with the issue of not being able to run-ios. The build would start and during the stage where it export variables, it would hang for a very long time, even up to an hour before outputting that the build had failed.
Took me a while to figure out that the architecture for my machine i386 was being excluded in xcode Build Settings. when I removed it from the excluded architecture, I was finally able to build again for IOS but that came at a cost of a full day.
This is the point at which it would hang. For a very long time:
I have observed that this behaviour is autogenerated and adds the following values to the project.pbxproj for development and release.
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
Reproducible demo
It fails on the MacBook Pro:
On this arch:
React native project @^0.73.0
npm install
pod install
command to run for ios
The text was updated successfully, but these errors were encountered:
Environment
Things I’ve done to figure out my issue
Observed that i386 arch is excluded in xcode project Build Settings
Upgrading version
0.73.0
Description
First I was faced with the issue of not being able to run-ios. The build would start and during the stage where it export variables, it would hang for a very long time, even up to an hour before outputting that the build had failed.
Took me a while to figure out that the architecture for my machine i386 was being excluded in xcode Build Settings. when I removed it from the excluded architecture, I was finally able to build again for IOS but that came at a cost of a full day.
This is the point at which it would hang. For a very long time:
I have observed that this behaviour is autogenerated and adds the following values to the project.pbxproj for development and release.
Reproducible demo
It fails on the MacBook Pro:
On this arch:
The text was updated successfully, but these errors were encountered: