Info.plist contained no UIScene configuration dictionary

In a SwiftUI project, I get the following runtime error:

2022-12-15 11:31:37.453318+0100 MyApp[7039:3585656] [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)")

There are no scene in the project:

I have tried to change the settings,

To no avail.

Answered by alexvalter in 740601022

To solve this problem, add Scene Configuration into Application Scene Manifest in Info.plist file. And the mistakes will go away.

Regards Alex Valter

I am having same issue after xcode update. it was running fine before...

Me too, what just happened?

Same happening here. I get the error: [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)") three times in a row. Using Xcode 14.1 and Ventura. (Haven't updated yet) SwiftUI project using Firebase and with @UIApplicationDelegateAdaptor but no code in AppDelegate. However my app still runs fine on device (iPhone and iPad)

someone has solved it?

Accepted Answer

To solve this problem, add Scene Configuration into Application Scene Manifest in Info.plist file. And the mistakes will go away.

Regards Alex Valter

43

Some additional information.

It may happen that SceneManifest fo not appear in the info.plist file. If so:

  • Open the app Settings in Xcode, fo to the info tab
  • You should find an Application Scene Manifest in the list of keys
  • Tap the + sign on its right
  • Select Scene Manifest

It's done, and Scene manifest should now also appear in info.plist.

Info.plist contained no UIScene configuration dictionary
 
 
Q