작성
·
2.3K
1
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)
안드로이드에서는 에러가 발생하지 않는데 iPhone 시뮬레이터에서 에러가 발생하는데,
iOS/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
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
저의 경우는 마지막 부분을 수정해줬습니다.