

v.0.71.6 has been released that resolves the issue by changing the minimum targeted iOS version to 12.4. It is related to incompatibility between Xcode 14.3 and react-native versions prior to v0.71.6. I try to build a release with Xcode 12.4 (12D4e) and react native 0.63.4 and local images are not shown but url images are. This is a known issue with react-native that was reported on March 31st in the react-native GitHub repository. It's the same when tried on the fresh clean RN 0.63.4 project with. React native 0.63.4 ios 14 no static images. The second problem seems to be caused by us using the Legacy Build System (we are currently forced to due to a 3rd party SDK dependency).
#React native xcode 12.4 code
Ld: warning: directory not found for option '-L-L/Users/dimitar.kolev/Library/Developer/Xcode/DerivedData/cc-avxgovnmtpzxrcfkmekdjdlsmxlz/Build/Products/Debug-iphoneos/DoubleConversion' ld: library not found for -lDoubleConversion clang: error: linker command failed with exit code 1 (use -v to see invocation) My team still don't use Flipper so for the moment this would be sufficient.īut, when I comment the flipper related code in my work project, I get the following build error: I tried to comment out the flipper related code in the Podfile and this works on a freshly init RN project. The solution is as follows: The solution is as follows: Go to project.pbxproj, search for Bundle React Native codes and images, it should be the parts where you can see the properties such as isa, buildActionMask, files etc. Firebase react-native iOS build fails with '-fobjc-weak is not supported on the current deployment target' 9 Build error: FBSDKShareKit. For the past 2 days, I'm researching for a solution but still no luck. The problem is that I do not have a shellScript property for the Bundle React Native codes and images phase. Platforms: iOS 14.4, DriverKit 20.2, macOS 11.1, tvOS 14.3, watchOS 7.2ĬompileC /Users/xxxx/Library/Developer/Xcode/DerivedData/testProj-gttdtokougyaeyaukpnbpyhshzvf/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.o /Users/xxxx/Dafidy/Testing/testProj/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp normal x86_64 c++ .clang.1_0.compilerĪfter migrating to RN 0.63.4 from 0.61.5, I can't build my project. Watchman: 4.9.0 - /usr/local/bin/watchman After installing react-native-firebase/app it's Build will failed in react-native ios 1 YogaKit.modulemap not found in React Native on IOS after build in Xcode 12.
#React native xcode 12.4 install
To fix this I had to isolate the offending dependency in post_install and execute pod install post_install do |installer|Ĭonfig.build_settings = '13.CPU: (12) 圆4 Intel(R) Core(TM) i7-9750H CPU 2.60GHz


And indeed the vendor's podspec mentioned Alamofire 5.5.0 which targets iOS 10, and not 13 or up.

The error mentioned the issue at hand: Alamofire was missing in my case.įrom what I understand when you force a IPHONEOS_DEPLOYMENT_TARGET to a higher value than actually supported you'll see no error, yet it will not be included in the app afterwards and causes this crash. I just recently upgraded to Xcode 10.0, and building my react native app gives this error. build application and try to run on iPhone Simulator. Referenced from: /TestSDK.app/Frameworks/amework/TheVendorĮxpected in: /TestSDK.app/Frameworks/amework/Alamofire Xcode 12.4 React native build failed in IOS Showing All Messages Command PhaseScriptExecution failed with a nonzero exit code. react: 17.0.1 > 17.0.1 react-native: 0.64.0 > 0.64.0 react-native-macos: Not Found npmGlobalPackages: react-native: Not Found. Target.build_configurations.each do |config|Ĭonfig.build_settings = '13.0'īy doing so I got the crash mentioned in the original post: dyld: Symbol not found: _ZN5swift34swift50override_conformsToProtocolEPKNS_14TargetMetadataINS_9InProcessEEEPKNS_24TargetProtocolDescriptorIS1_EEPFPKNS_18TargetWitnessTableIS1_EES4_S8_E To fix that I did what ababykina suggested and applied iOS 13 to all pods in post_install post_install do |installer| Flutter for React Native devs Flutter for web devs Flutter for Xamarin.Forms. The framework is targeted as iOS 12 but one of its dependencies (SwiftDate) is actually targeted for iOS 13, which raised the following error in Xcode: Compiling for iOS 12.0, but module 'SwiftDate' has a minimum deployment target of iOS 13.0 Command PhaseScriptExecution failed with a nonzero exit code. You need to run 'nvm install default' to install it before using it. N/A: version 'default -> N/A' is not yet installed. I am working with a framework from a private vendor through CocoaPods. Trying to run the react-native project but encountered the following error.
