Fix Missing File libarclite_iphoneos.a (FMFL)



AVAILABLE:    5

After installing Xcode 14.3 to run my app on iOS 16.3 with an iPhone XS, I encountered the following error:

File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

Solution

Add or modify the code pattern in your Podfile as shown below:

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
end

Done!


Post a Comment

Previous Next

نموذج الاتصال