2017. 1. 10. 22:54ㆍ프로그래밍/IOS
1) 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 파일을 리스트에서 제거한다
참고 : http://answers.unity3d.com/questions/1001136/the-archive-is-invalid-varfolders-k9jd5s-9d1h59l72.html
2) ipad 멀티태스킹 관련 에러
아이패드와 아이폰을 동시에 타깃으로 잡은 어플의 경우 발생하는 에러
대부분 아래 두개의 에러가 쌍으로 발생한다
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 체크!!
참고 : http://dark0946.tistory.com/312
'프로그래밍 > IOS' 카테고리의 다른 글
IOS validate시에 CFBundleVersion 에러 (0) | 2017.04.10 |
---|---|
디바이스의 현재 orientation 확인하기 (1) | 2015.01.15 |