개발일지/UE4
UE4 XCode 컴파일 에러 : Cannot code sign because the target does not have an Info.plist file and one is not being generated automatically.
김진우 개발일지
2023. 8. 18. 11:30
[velog에서 블로그 이전하며 가져온 글입니다]
작성 일자 : 2023년 4월 11일
Cannot code sign because the target does not have an Info.plist file and one is not being generated automatically. Apply an Info.plist file to the target using the INFOPLIST_FILE build setting or generate one automatically by setting the GENERATE_INFOPLIST_FILE build setting to YES (recommended).
언리얼 프로젝트를 개발하던 중 IOS로 앱을 패키징하기 위해 Mac에서 컴파일을 시도했지만 위에 나오는 컴파일 에러가 발생했다. XCode의 빌드 설정에서 GENERATE_INFOPLIST_FILE을 Yes로 설정하면 자동으로 info.plist를 생성하여 컴파일 에러를 해결할 수 있다.
XCode에서 Project 클릭 -> All 에서 GENERATE_INFOPLIST_FILE을 검색하면 하단에 자동 생성 옵션이 나온다. Yes로 설정해주자.