mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-13 19:47:02 -06:00
19 lines
507 B
Swift
19 lines
507 B
Swift
import UIKit
|
|
|
|
@testable import Authenticator
|
|
|
|
class TestingAppDelegate: NSObject, UIApplicationDelegate {
|
|
var window: UIWindow?
|
|
|
|
func application(
|
|
_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
|
) -> Bool {
|
|
let window = UIWindow(frame: UIScreen.main.bounds)
|
|
window.rootViewController = UIViewController()
|
|
window.makeKeyAndVisible()
|
|
self.window = window
|
|
return true
|
|
}
|
|
}
|