[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?
🌏 번역 🌏
: 빌드 입력 파일을 찾을 수 없습니다.
이 파일을 생성하는 스크립트 단계 또는 사용자 지정 빌드 규칙의 출력으로 선언하는 것을 잊었습니까?
내 나름 해석하자면 '~filepath/Info.plist'의 입력 파일의 경로를 찾을 수 없어서,
파일의 경로를 다시 확인 해볼래? 라는 얘기 같다.
Info.plist의 경로를 바꾼 것이 문제
~ 원인을 알았으니 해결해보자 ~
⭐️ 해결방법 ⭐️
1️⃣ Project 파일 클릭 → TARGETS → 해당 Project 클릭 → Build Settings
2️⃣ Packaging → Info.plist File → 경로 확인 ( 혹은 ⌘Command + F Info.plist 검색 )
3️⃣ 변경된 Info.plist 경로로 변경
해결 완료!
반응형
'iOS Swift > iOS Swift - Error' 카테고리의 다른 글
[iOS/Swift] Invalid MinimumOSVersion. Firebase Framework Error (0) | 2024.06.14 |
---|---|
[Xcode] Failed to register bundle identifier Swift Errror 에러 (1) | 2023.07.20 |
[Xcode] Error: unable to open configuration settings file 에러 (2) | 2023.01.22 |
[iOS/Swift] Xcode 14 'Charts' Library 에러 해결 (0) | 2022.11.16 |