아무나 빌려가세요
Error (Xcode): File not found: libarclite_iphoneos.a 에러 해결 본문
어느날 갑자기 ios가 build 되지 않는 상황 발생.
2시간의 삽질 결과 xocde 14.3과 cocoapods간의 호환이 문제가있다는 점을 알게됨.
statckoverflow의 해결방법은 podfile의 맨 밑줄 post_install 부분을 수정한다.
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
'플러터' 카테고리의 다른 글
xcode15 - flutter DT_TOOLCHAIN_DIR ios빌드 에러 (2) | 2023.09.22 |
---|---|
xcode15 - Error (Xcode): Cycle inside Runner; building could produce unreliable results. 에러 (0) | 2023.09.22 |
mac M1 환경변수 추가할때 (0) | 2022.08.22 |
firebaseAuth messaging ios 에러 (0) | 2022.08.19 |
flutter push알림 onesignal 적용(3) (0) | 2022.05.10 |