티스토리 뷰
IT/모바일
ios / flutter 시뮬레이터 빌드시 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a 에러 해결방법
ko dean 2023. 4. 3. 16:29반응형
xcode 14.3으로 업데이트이후 시뮬레이터에서 빌드시
ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
clang: error: linker command failed with exit code 1 (use -v to see invocation)
에러가 발생한다.
flutter에서도 동일하게 에러가 발생하였는데
xcode 14.3부터는 ios 11.0미만으로는 지원을 하지 않는지
Targets에 있는 모든 Minimum Deployments를 빨간색 네모친 부분을 11.0으로 변경하니 시뮬레이터에서 정상적으로 빌드가 되는 것을 확인했다.
flutter에서는 ProjectFoleder/ios/Podfile을 열어
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
로 된 것을 아래와 같이 변경해주고
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
pod install --repo-update 터미널에서 입력하니 정상적으로 빌드가 되는 것을 확인하였다
반응형
'IT > 모바일' 카테고리의 다른 글
[Flutter] Json to DartModel (0) | 2023.04.05 |
---|---|
[flutter] 채팅 목록에서 최종 채팅 시간 보여주기 (0) | 2023.04.05 |
xcode 14.3 아카이브시 PhaseScriptExecution failed with a nonzero exit code 에러 해결방법 (12) | 2023.04.03 |
cocoaPod install (0) | 2018.01.31 |
[IOS] 앱스토어 버전 체크 팝업 만들기 (0) | 2016.06.24 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- python3.12 설치
- aws python3.12
- Xcode
- ios pod install error
- Response: Failure when receiving data from the peer
- CDN: trunk URL couldn't be downloaded
- ios
- 수경재배키트
- NSPrivacyAccessedAPICategoryUserDefaults
- Firebase
- 해결방법
- ITMS-91053: Missing API declaration
- NSPrivacyAccessedAPICategorySystemBootTime
- 베란다 수경재배
- Flutter
- Error (Xcode): Target release_unpack_ios failed: Exception: Binary
- Failed to launch iOS Simulator: Error: Emulator didn't connect within 60 seconds
- 슬랙으로 보내기
- EC2
- MySQL
- flutter build ipa
- NSPrivacyAccessedAPICategoryFileTimestamp
- ios 앱 심사상태
- NSPrivacyAccessedAPICategoryDiskSpace
- com.google.android.gms.common.api.ApiException: 10:
- 리눅스 python3 설치
- 아이폰
- google play appcheck
- PlatformException(sign_in_failed
- but linking in object file
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함