Skip to content

Commit

Permalink
Empty scene manifest
Browse files Browse the repository at this point in the history
This prevents UIKit from attempting to look up non-existent scene configurations at launch.
  • Loading branch information
mttcrsp committed Jan 15, 2023
1 parent 5368b87 commit 3ad852e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ let app = Target(
"UIBackgroundModes": .array(["audio"]),
"ITSAppUsesNonExemptEncryption": .boolean(false),
"UILaunchStoryboardName": .string("LaunchScreen"),
"UIApplicationSceneManifest": .dictionary([
"UIApplicationSupportsMultipleScenes": .boolean(false),
"UISceneConfigurations": .dictionary([:]),
]),
"NSAppTransportSecurity": .dictionary([
"NSAllowsArbitraryLoads": .boolean(true),
]),
Expand Down

0 comments on commit 3ad852e

Please sign in to comment.