iOS Swift/iOS Swift - Error 5

[iOS/Swift] Invalid MinimumOSVersion. Firebase Framework Error

[ERROR]Invalid MinimumOSVerisionFirebase Framework 에러 발생   개발 환경Xcode - 15.3.0  몇 개월 만에 프로젝트를 열어 Archive 하였더니 에러 발생현재 Xcode 15.3 버전에서 개발하고 아래와 같은 오류가 발생했다.    ⛔️ 에러 내용 ⛔️    Asset validation failed Invalid MinimimOSVersion. Apps that only support 64-bit devices must specify a deployment target of 8.0 or later. MinimumOSVersion in '~/Frameworks/FirebaseAnalytics.framework'   🌏 번역 🌏: 최소 OS 버전이 ..

[Xcode] Failed to register bundle identifier Swift Errror 에러

[Xcode] Failed to register bundle identifier 에러 해결하기 에러 발생 경위 ✍🏻 App Store에 등록할 앱을 빌드하는 과정에서 Product → Archive 중 오류가 발생 ⛔️ 에러 내용 ⛔️ Failed to register bundle identifier. The app identifier "com.ooo.ooo" cannot be registered to your development team because it is not available. Change your bundle identifier to a unique string to try again. 🌏 번역 🌏 : 번들 식별자를 등록하지 못했습니다. 앱 식별자 "com.oo.oo"를 사용할 수 없기 ..

[Xcode] Build input file cannot be found '/Info.plist'. Error 에러

[Xcode] Error Build input file cannot be found : '~/Info.plist'. Xcode Project 안의 파일 경로들을 정리하던 중 'Info.plist'의 경로를 변경한 후 문제가 생겼다! 에러 내용과 해결방법 알아보자 ⛔️ 에러 내용 ⛔️ Build input file cannot be found: '~filepath/Info.plist'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it? 🌏 번역 🌏 : 빌드 입력 파일을 찾을 수 없습니다. 이 파일을 생성하는 스크립트 단계 또는 사용자 지정 빌드 규칙의 출력으로 선언하..

[Xcode] Error: unable to open configuration settings file 에러

[Error] unable to open configuration settings file Github 프로젝트를 새로 clone 한 후 오류가 생겼다 Pods 파일 directory 부분에서 에러가 생김 함께 따라서 고쳐보자! ❌ 에러 내용 ❌ unable to open configuration settings file 해석: settings 파일을 열 수 없습니다. 또 다른 에러 Unable to load contents of file list: '/Target Support Files/Pods/files.xcfilelist' 해석: 파일 목록의 내용을 읽어올 수 없습니다. 위 에러의 경우, GitHub Code를 Clone 하면 발생한다. GitHub 프로젝트를 push 할 때, pod file 은..

[iOS/Swift] Xcode 14 'Charts' Library 에러 해결

Xcode 14 버전으로 업데이트 한 후 프로젝트에 에러가 생겼다. 'Charts' 라이브러리에 문제가 생김! ❌ 에러 내용 ❌ Referencing instance method 'makeIterator()' on 'Collection' requires the types 'IndexingIterator' and 'IndexingIterator' be equivalent 'Charts' 라이브러리에 문제가 생긴거라 에러 내용을 보더라도 이해하지는 못했다. 내용을 알든 모르든 구글링할끄니까~ ⭐️ 해결방법 ⭐️ 라이브러리 수정 lock을 해제한 후, Charts 라이브러리의 몇 부분 삭제하고 추가한다. 삭제 할 부분 에러 뜬 부분을 주석처리 하면 된다 RadarChartRenderer.Swift for ca..