Hello, I have recently upgraded to Xcode 12 and created a new project. In Xcode 11 there was a file called AppDelegate.swift. I am wondering if this file has been moved, removed, or renamed.
Thank You
Thank You
Code Block swift import SwiftUI import Firebase @main struct ourApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { WindowGroup { ContentView() } } } class AppDelegate: NSObject, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { FirebaseApp.configure() return true } }