2015-12-09

iOS9 앱스토어 업로드시, ITMS-90474, 90475 에러 발생!

iOS9, 컴파일(Archive)후에 앱스토어(itunes connect) 등록시, 아래 처럼 에러가 나는 경우가 발생 했음.
다행히 좀 뒤져 보니 방법이 있네요.

ERROR ITMS-90474: “Invalid Bundle. iPad Multitasking support requires these orientations: ‘ UIInterfaceOrieentationPortrait,UIInterfaceOrientationPortraitUpsideDown,
UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight’. Found ‘UIInterfaceOrientationLandscapeRight’ in bundle ‘com.domain.app'”

ERROR ITMS-90475: "Invalid Bundle. iPad Multitasking support requires launch story board in bundle '


Info.plist에 아래 내용 삽입!

 <key>UIRequiresFullScreen</key>
 <string>YES</string>
잘 동작합니다.

참고, http://fliperamma.com/unity-and-ios-9-invalid-bundle-ipad-multitasking-support/