Mobile 개발/RN(React Native)

RN TroubleShooting: IOS build errors

히핑소 2020. 12. 18. 15:57
반응형

 

- Velidate 과정 - 번들 이슈

해당 오류메세지를 처음에 보고 구글링에도 별다른 정보가 나오지 않아서 엄청 당황했지만 찾아보니 번들 이슈로 밝혀졌습니다

명확한 내용을 알려주지 않지만 구글링한 내용들의 공통점은 뭔가 프로젝트에 들어간 ~~~~.bundle 파일이 Velidate 과정에서 문제가 있는듯한

Archieve validatation failed due to the issues listed below.
Unable to validate your application.

The archive is invalid. /var/folders/hh/lq2dx5x57r5csdfb25sx25dr0000gn/T/XcodeDistPipeline.q24/Packages/Unity-iPhone.ipa does not exist.

해결방법 : Build Phases > Copy Bundle Resources 리스트에서 ~~~~~.bundle 파일을 리스트에서 제거

 

- ipad 멀티태스킹 관련 에러

아이패드와 아이폰을 동시에 타깃으로 잡은 어플의 경우 발생하는 에러

대부분 아래 두개의 에러가 쌍으로 발생하는데, 저는 90474 만 발생했습니다.

ERROR ITMS-90474: "Bundle Invalid. iPad Multitasking support requires there orientations: 'UIInterfaceOrientationPortrait,UIIinterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'. Found 'UIInterfaceOrientationPortrait' in bundle.
ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch story board in bundle 'com.companyname.appname.'"

 

해결방법:  General > Deployment Info > Requires full screen 체크!!

 

 

 

출처 by qits.tistory.com/entry/IOS-%EB%B9%8C%EB%93%9C-%EC%97%90%EB%9F%AC-%EB%AA%A8%EC%9D%8C

반응형