We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent def0012 commit 69b0c84Copy full SHA for 69b0c84
2 files changed
Neki-iOS/APP/Sources/Application/AppDelegate.swift
@@ -0,0 +1,17 @@
1
+//
2
+// AppDelegate.swift
3
+// Neki-iOS
4
5
+// Created by OneTen on 3/22/26.
6
7
+
8
+import SwiftUI
9
+import FirebaseCore
10
11
+class AppDelegate: NSObject, UIApplicationDelegate {
12
+ func application(_ application: UIApplication,
13
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
14
+ FirebaseApp.configure()
15
+ return true
16
+ }
17
+}
Neki-iOS/APP/Sources/Application/Neki_iOSApp.swift
@@ -10,6 +10,8 @@ import ComposableArchitecture
@main
struct Neki_iOSApp: App {
+ @UIApplicationDelegateAdaptor(AppDelegate.self) var delegate
let store = Store(initialState: AppCoordinator.State()) {
AppCoordinator()
}
0 commit comments