Commit e6b9d9dd by Dmitriy Stepanets

Removed debug code

parent 797a623a
...@@ -80,18 +80,9 @@ class AppDelegate: UIResponder, UIApplicationDelegate { ...@@ -80,18 +80,9 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
FirebaseApp.configure() FirebaseApp.configure()
ConfigManager.shared.updateConfig() ConfigManager.shared.updateConfig()
#if DEBUG //App UI
let onboard = OnboardingPageController(coordinator: AppCoordinator(window: self.window!)) let appCoordinator = AppCoordinator(window: self.window!)
window?.rootViewController = onboard appCoordinator.start()
window?.makeKeyAndVisible()
#else
fatalError("Remove in release")
#endif
// //App UI
// let appCoordinator = AppCoordinator(window: self.window!)
// appCoordinator.start()
ThemeManager.setBaseTheme() ThemeManager.setBaseTheme()
let appVersion = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String let appVersion = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment