React Native reports "Cannot initialize a parameter of type'NSArray<id<RCTBridgeModule>>" error (solution)

React Native reports "Cannot initialize a parameter of type'NSArray<id<RCTBridgeModule>>" error (solution)

Recently, when running an old RN project, the following code error was reported when running it with Xcode:

Cannot initialize a parameter of type 'NSArray<id<RCTBridgeModule>> *'
with an lvalue of type 'NSArray<Class> *__strong'
Cannot initialize a parameter of type 'NSArray<Class> *'
with an lvalue of type 'NSArray<id<RCTBridgeModule>> *__strong'
Cannot initialize a parameter of type 'NSArray<id<RCTBridgeModule>> *'
with an rvalue of type 'NSArray<Class> *'

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 pod install command to install it.

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:
  • Summary of react basics
  • Detailed explanation of data transmission between React parent components and child components
  • Detailed explanation of the role of key in React
  • React entry-level detailed notes

<<:  Detailed explanation of top command output in Linux

>>:  Tips for data statistics in MySQL

Recommend

Introduction to the use of http-equiv attribute in meta tag

meta is an auxiliary tag in the head area of ​​htm...

Summary of 6 skills needed to master web page production

It has to be said that a web designer is a general...

Docker image creation Dockerfile and commit operations

Build the image There are two main ways to build ...

Solution to 1045 error in mysql database

How to solve the problem of 1045 when the local d...

PHP-HTMLhtml important knowledge points notes (must read)

1. Use frameset, frame and iframe to realize mult...

Solution for Baidu site search not supporting https (tested)

Recently, https has been enabled on the mobile ph...

What are the new features of Apache Spark 2.4, which will be released in 2018?

This article is from the Apache Spark Meetup held...

Vue shuttle box realizes up and down movement

This article example shares the specific code for...

How to use Docker to build a development environment (Windows and Mac)

Table of contents 1. Benefits of using Docker 2. ...

JS uses the reduce() method to process tree structure data

Table of contents definition grammar Examples 1. ...

Introduction to HTML page source code layout_Powernode Java Academy

Introduction to HTML page source code layout This...

How to open the port in Centos7

The default firewall of CentOS7 is not iptables, ...

MySql 8.0.11-Winxp64 (free installation version) configuration tutorial

1. Unzip the zip package to the installation dire...