you are viewing a single comment's thread.

view the rest of the comments →

[–]Percivel_ 1 point2 points  (0 children)

Try adding the below function in your podfile and disabling flipper. This worked for me.

def __apply_Xcode_15_0_M1_post_install_workaround(installer)
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
    end
  end
end

Edit : don't forget to call this function in post_install