Skip to content

Commit 97b2af0

Browse files
authored
Fix configuration of launch screen (#26)
The launch screen storyboard was included, but not configured to be used. This enables it again.
1 parent 08986f9 commit 97b2af0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

TemplateApp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,8 @@
439439
INFOPLIST_FILE = TemplateApp/Info.plist;
440440
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
441441
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
442-
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
442+
INFOPLIST_KEY_UILaunchScreen_Generation = NO;
443+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen.storyboard;
443444
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
444445
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
445446
LD_RUNPATH_SEARCH_PATHS = (
@@ -469,7 +470,8 @@
469470
INFOPLIST_FILE = TemplateApp/Info.plist;
470471
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
471472
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
472-
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
473+
INFOPLIST_KEY_UILaunchScreen_Generation = NO;
474+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen.storyboard;
473475
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
474476
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
475477
LD_RUNPATH_SEARCH_PATHS = (

0 commit comments

Comments
 (0)