Untitled

https://github.com/facebook/react-native/issues/39568

👍 해결방법

  1. make sure that you are calling the react_native_post_install hook in your Podfile's post_install_hookLike this
  2. Please invoke the __apply_Xcode_12_5_M1_post_install_workaround as shown above.
  3. update to React Native 0.72.6.
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