iOS - Swift
[xcode] xcode 14.3 File not found /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
야라라라
2023. 5. 18. 16:33
반응형
SMALL
잘 실행 되던 앱이 실행 시
File not found /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
오류 발생
>>>>>
podfile 에
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
추가 후 pod update
반응형
LIST