Initial commit: IYmtg Master project
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
17
IYmtg_App_iOS/IYmtgApp.swift
Normal file
17
IYmtg_App_iOS/IYmtgApp.swift
Normal file
@@ -0,0 +1,17 @@
|
||||
import SwiftUI
|
||||
import FirebaseCore
|
||||
|
||||
@main
|
||||
struct IYmtgApp: App {
|
||||
init() {
|
||||
AppConfig.validate()
|
||||
if Bundle.main.path(forResource: "GoogleService-Info", ofType: "plist") != nil {
|
||||
FirebaseApp.configure()
|
||||
} else {
|
||||
print("⚠️ GoogleService-Info.plist missing. Running in Local Mode.")
|
||||
}
|
||||
}
|
||||
var body: some Scene {
|
||||
WindowGroup { ContentView() }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user