개발

Invalid bundle. Because your app supports Multitasking on iPad, you need to include the LaunchScreen.storyboard launch storyboard file 을 만났다면!?

소소ing 2023. 10. 23. 16:34
반응형

내가 만난 오류는 

Xocde 15를 사용했으며, Storyboard가 포함되어 있는 상태의 프로젝트 아카이브 후 앱스토어로 올리려고 할 때 발생되었다.

 

Invalid bundle. Because your app supports Multitasking on iPad, you need to include the LaunchScreen.storyboard launch storyboard file in your XXXX bundle. Use UILaunchScreen instead if the app’s MinimumOSVersion is 14 or higher and you prefer to configure the launch screen without storyboards. For details, see: https://developer.apple.com/documentation/bundleresources/information_property_list/uilaunchstoryboardname

 

UILaunchStoryboardName | Apple Developer Documentation

The filename of the storyboard from which to generate the app’s launch image.

developer.apple.com

 

해당 문제 해결 방법은?

<key>UILaunchStoryboardName</key>
<string>LaunchScreen.storyboard</string>

 

이 부분을 

<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>

이렇게 수정하면 끝

반응형