Sync update: 2026-05-18 16:24:26

This commit is contained in:
Hamza-Ayed
2026-05-18 16:24:26 +03:00
parent 905819a1d5
commit f2a14ce23e
3 changed files with 17 additions and 5 deletions

View File

@@ -7,6 +7,10 @@ import UIKit
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
if self.window == nil {
self.window = UIWindow(frame: UIScreen.main.bounds)
self.window?.rootViewController = UIViewController()
}
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}