Skip to content

Commit 69b0c84

Browse files
committed
[Feat] #185 - 파이어베이스 연결
1 parent def0012 commit 69b0c84

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import ComposableArchitecture
1010

1111
@main
1212
struct Neki_iOSApp: App {
13+
@UIApplicationDelegateAdaptor(AppDelegate.self) var delegate
14+
1315
let store = Store(initialState: AppCoordinator.State()) {
1416
AppCoordinator()
1517
}

0 commit comments

Comments
 (0)