2020-02-16 18:47:09 +00:00
|
|
|
//
|
|
|
|
// AppDelegate.swift
|
2022-08-07 13:31:15 +01:00
|
|
|
// Mixonomer
|
2020-02-16 18:47:09 +00:00
|
|
|
//
|
|
|
|
// Created by Andy Pack on 16/02/2020.
|
|
|
|
// Copyright © 2020 Sarsoo. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
2020-02-19 23:00:23 +00:00
|
|
|
import SwiftyJSON
|
2022-11-23 23:39:58 +00:00
|
|
|
import OSLog
|
2020-02-16 18:47:09 +00:00
|
|
|
|
|
|
|
@UIApplicationMain
|
|
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
2020-02-19 23:00:23 +00:00
|
|
|
|
2020-02-16 18:47:09 +00:00
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
|
|
// Override point for customization after application launch.
|
2022-12-09 08:51:42 +00:00
|
|
|
UIApplication.shared.registerForRemoteNotifications()
|
2020-02-16 18:47:09 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: UISceneSession Lifecycle
|
|
|
|
|
|
|
|
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
|
|
|
// Called when a new scene session is being created.
|
|
|
|
// Use this method to select a configuration to create the new scene with.
|
|
|
|
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
|
|
|
|
}
|
|
|
|
|
|
|
|
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
|
|
|
|
// Called when the user discards a scene session.
|
|
|
|
// If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
|
|
|
|
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
|
|
|
|
}
|
2022-12-09 08:51:42 +00:00
|
|
|
|
|
|
|
func application(_ application: UIApplication,
|
|
|
|
didRegisterForRemoteNotificationsWithDeviceToken
|
|
|
|
deviceToken: Data) {
|
|
|
|
|
|
|
|
let token = deviceToken.map { String(format: "%02.2hhx", $0) }.joined()
|
|
|
|
|
|
|
|
StaticNotif.token = token
|
|
|
|
}
|
2020-02-16 18:47:09 +00:00
|
|
|
|
2022-12-09 08:51:42 +00:00
|
|
|
func application(_ application: UIApplication,
|
|
|
|
didFailToRegisterForRemoteNotificationsWithError
|
|
|
|
error: Error) {
|
|
|
|
// Try again later.
|
|
|
|
}
|
2020-02-16 18:47:09 +00:00
|
|
|
|
2022-12-09 08:51:42 +00:00
|
|
|
func application(_ application: UIApplication,
|
|
|
|
didReceiveRemoteNotification userInfo: [AnyHashable : Any],
|
|
|
|
fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
|
|
|
|
completionHandler(.noData)
|
|
|
|
}
|
2020-02-16 18:47:09 +00:00
|
|
|
}
|
|
|
|
|
2022-11-23 23:39:58 +00:00
|
|
|
extension Logger {
|
|
|
|
private static var subsystem = Bundle.main.bundleIdentifier!
|
|
|
|
|
|
|
|
/// Logs the view cycles like viewDidLoad.
|
|
|
|
static let net = Logger(subsystem: subsystem, category: "net")
|
|
|
|
static let parse = Logger(subsystem: subsystem, category: "parse")
|
|
|
|
static let sys = Logger(subsystem: subsystem, category: "sys")
|
|
|
|
}
|