
- Comprehensive README update documenting v2.0 architectural changes - Updated git remote to ssh://rockvilleav@git.rockvilletollandsda.church:10443/RTSDA/RTSDA-iOS.git - Documented unified ChurchService and 60% code reduction - Added new features: Home Feed, responsive reading, enhanced UI - Corrected license information (GPL v3 with church content copyright) - Updated build instructions and technical stack details
21 lines
330 B
Swift
21 lines
330 B
Swift
//
|
|
// RTSDAApp.swift
|
|
// RTSDA
|
|
//
|
|
// Created by Benjamin Slingo on 11/24/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct RTSDAApp: App {
|
|
@State private var dataService = ChurchDataService()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
SplashScreenView()
|
|
.environment(dataService)
|
|
}
|
|
}
|
|
}
|