반응형
내가 만난 오류는
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
해당 문제 해결 방법은?
<key>UILaunchStoryboardName</key>
<string>LaunchScreen.storyboard</string>
이 부분을
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
이렇게 수정하면 끝
반응형
'개발' 카테고리의 다른 글
이대로만 하면 iOS 앱을 fastlane과 CircleCI을 이용하여 자동 빌드 및 배포 완성(CI/CD 파이프라인) (0) | 2024.03.12 |
---|---|
iOS Swift UITableView FooterView 추가 시 하단에 붙지 않고 UITableView 영역 안 떠있는 현상 발생 시 (화면이 깨질 경우) (0) | 2023.12.18 |
Swift UIWindow? makeKeyAndVisible?? (0) | 2023.01.18 |
Swift Coordinator 패턴으로 앱 흐름 제어 해보기! (0) | 2023.01.18 |
Android AppBundle 사용 시 사용자 설정 언어만 동작하는 문제 해결법 (0) | 2023.01.17 |