├── AppServicesSwift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── stevencurtis.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── AppServicesSwift ├── AppDelegate+Services │ ├── AnalyticsService.swift │ ├── CrashReporterService.swift │ └── PersistenceService.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── AppServicesSwiftTests ├── AppServicesSwiftTests.swift └── Info.plist ├── AppServicesSwiftUITests ├── AppServicesSwiftUITests.swift └── Info.plist └── README.md /AppServicesSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppServicesSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppServicesSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppServicesSwift.xcodeproj/xcuserdata/stevencurtis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift.xcodeproj/xcuserdata/stevencurtis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AppServicesSwift.xcodeproj/xcuserdata/stevencurtis.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift.xcodeproj/xcuserdata/stevencurtis.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AppServicesSwift/AppDelegate+Services/AnalyticsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/AppDelegate+Services/AnalyticsService.swift -------------------------------------------------------------------------------- /AppServicesSwift/AppDelegate+Services/CrashReporterService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/AppDelegate+Services/CrashReporterService.swift -------------------------------------------------------------------------------- /AppServicesSwift/AppDelegate+Services/PersistenceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/AppDelegate+Services/PersistenceService.swift -------------------------------------------------------------------------------- /AppServicesSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/AppDelegate.swift -------------------------------------------------------------------------------- /AppServicesSwift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppServicesSwift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppServicesSwift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AppServicesSwift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AppServicesSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/Info.plist -------------------------------------------------------------------------------- /AppServicesSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwift/ViewController.swift -------------------------------------------------------------------------------- /AppServicesSwiftTests/AppServicesSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwiftTests/AppServicesSwiftTests.swift -------------------------------------------------------------------------------- /AppServicesSwiftTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwiftTests/Info.plist -------------------------------------------------------------------------------- /AppServicesSwiftUITests/AppServicesSwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwiftUITests/AppServicesSwiftUITests.swift -------------------------------------------------------------------------------- /AppServicesSwiftUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/AppServicesSwiftUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevencurtis/CleanAppDelegate/HEAD/README.md --------------------------------------------------------------------------------