When upgrading to xcode14.3, an error message appears: File not found: .../libarclite_iphoneos.a

I just upgraded xcode to 14.3, and the compilation project reported an error File not found: …/libarclite_iphoneos.a

Solution:
1. In the podfile file, before the last end, insert the following content:
Insert image description here

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'] = '11.0'
               end
          end
   end
end
 

2. Then go to the directory where the podfile is located through the terminal and execute the command "pod install".
When cd enters the directory, there may be spaces in the path, and it will prompt "cd: string not in pwd". Just add a "\" escape character before the spaces.

Guess you like

Origin blog.csdn.net/bangtanhui/article/details/130565314