Missing file `libarclite_iphoneos.a` in Xcode 14.3 after update flutter and Xcode

post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
         end
    end
end
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end

Try updating your ios/Podfile. Change 13.0 with the version you have at the top of the file.

Leave a Comment