Recently, when running an old RN project, the following code error was reported when running it with Xcode:
This is a problem after upgrading to XCode 12.5. Just add the following script to the ios/Podfile file. post_install do |installer| ## Fix for XCode 12.5 find_and_replace( "../node_modules/react-native/React/CxxBridge/RCTCxxBridge.mm", "_initializeModules:(NSArray<id<RCTBridgeModule>> *)modules", "_initializeModules:(NSArray<Class> *)modules") find_and_replace( "../node_modules/react-native/ReactCommon/turbomodule/core/platform/ios/RCTTurboModuleManager.mm", "RCTBridgeModuleNameForClass(module))", "RCTBridgeModuleNameForClass(Class(module)))" ) end def find_and_replace(dir, findstr, replacestr) Dir[dir].each do |name| text = File.read(name) replace = text.gsub(findstr,replacestr) if text != replace puts "Fix: " + name File.open(name, "w") { |file| file.puts replace } STDOUT.flush end end Dir[dir + '*/'].each(&method(:find_and_replace)) end Then, re-execute the This is the end of this article about React Native reporting Cannot initialize a parameter of type'NSArray<id<RCTBridgeModule>> error (solution). For more relevant React Native error content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of top command output in Linux
>>: Tips for data statistics in MySQL
MySQL Bin log data recovery: accidentally delete ...
I won’t talk about the use of SSL certificates. F...
meta is an auxiliary tag in the head area of htm...
It has to be said that a web designer is a general...
Build the image There are two main ways to build ...
How to solve the problem of 1045 when the local d...
1. Use frameset, frame and iframe to realize mult...
Recently, https has been enabled on the mobile ph...
This article is from the Apache Spark Meetup held...
This article example shares the specific code for...
Table of contents 1. Benefits of using Docker 2. ...
Table of contents definition grammar Examples 1. ...
Introduction to HTML page source code layout This...
The default firewall of CentOS7 is not iptables, ...
1. Unzip the zip package to the installation dire...