Firebaseの初期化コードを入力して、プレビューをしようとするとエラーが出ます。
原因がわかりません。ご教授いただけると幸いです。
初期化コードです。
swift
1import SwiftUI 2import Firebase 3 4@main 5struct LiveApp: App { 6 7 @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate 8 9 var body: some Scene { 10 WindowGroup { 11 ContentView() 12 } 13 } 14} 15 16class AppDelegate: UIResponder, UIApplicationDelegate { 17 18 var window: UIWindow? 19 20 func application(_ application: UIApplication, 21 didFinishLaunchingWithOptions launchOptions: 22 [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 23 FirebaseApp.configure() 24 25 return true 26 } 27} 28
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/13 12:36