2022-01-02 19:41:04 +00:00
|
|
|
import Foundation
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
final class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var orientationLock = UIInterfaceOrientationMask.all
|
|
|
|
|
|
|
|
private(set) static var instance: AppDelegate!
|
|
|
|
|
|
|
|
func application(_: UIApplication, supportedInterfaceOrientationsFor _: UIWindow?) -> UIInterfaceOrientationMask {
|
|
|
|
orientationLock
|
|
|
|
}
|
|
|
|
|
|
|
|
func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool { // swiftlint:disable:this discouraged_optional_collection
|
2022-05-20 19:53:17 +00:00
|
|
|
Self.instance = self
|
2022-06-21 22:18:16 +00:00
|
|
|
#if os(iOS)
|
|
|
|
UIViewController.swizzleHomeIndicatorProperty()
|
2022-06-28 19:11:28 +00:00
|
|
|
|
2022-07-09 22:29:13 +00:00
|
|
|
OrientationTracker.shared.startDeviceOrientationTracking()
|
2022-06-21 22:18:16 +00:00
|
|
|
#endif
|
2022-01-02 19:41:04 +00:00
|
|
|
return true
|
|
|
|
}
|
2024-04-25 17:01:44 +00:00
|
|
|
|
|
|
|
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
|
|
|
|
if url.scheme == "yattee" {
|
|
|
|
OpenURLHandler.handle(url)
|
2024-04-25 17:18:10 +00:00
|
|
|
return true
|
2024-04-25 17:01:44 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2022-01-02 19:41:04 +00:00
|
|
|
}
|