๐ iOS/Error Handling
[Error, Xcode] File not found /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a ๋ฌธ์ ํด๊ฒฐํ๊ธฐ
TechYeon
2023. 4. 2. 23:16
[ERROR]
Xcode Version 14.3 ์ผ๋ก ์ ๋ฐ์ดํธ ํ๊ณ ๋ฐ์ํ ์๋ฌ
Could not build the precompiled application for the device.
Error (Xcode): File not found /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
Error (Xcode): Linker command failed with exit code 1 (use -v to see invocation)
[ โญ๏ธ ํด๊ฒฐ ๋ฐฉ๋ฒ1. - ์ฝ์ฝ์ํ ์ค์น๋์ด ์๋๊ฒฝ์ฐ]
์๋ ์ฝ๋ podfile ๋ด ์ถ๊ฐ ํ pod update ์คํ
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
[ โญ๏ธ ํด๊ฒฐ ๋ฐฉ๋ฒ2. - ์ฝ์ฝ์ํ ์ค์น๋์ด ์์ง ์์ ๊ฒฝ์ฐ + ํ๋ก์ ํธ Minimum Deployments ๊ฐ 8.0 ์ดํ์ธ ๊ฒฝ์ฐ]
Minimum Deployments 11.0 ์ด์์ผ๋ก ๋ฐ๊ฟ์ฃผ๊ธฐ
[stackoverflow]
728x90
๋ฐ์ํ