https://github.com/facebook/react-native/issues/39568
react_native_post_install
hook in your Podfile's post_install_hook
. Like this__apply_Xcode_12_5_M1_post_install_workaround
as shown above.post_install do |installer|
# <https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202>
react_native_post_install(
installer,
config[:reactNativePath],
:mac_catalyst_enabled => false
)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
end