Update capacitor version, kotlin version, android dependencies, refactor some folders

This commit is contained in:
advplyr
2023-01-22 17:26:08 -06:00
parent b2d3edca81
commit a8c66ff808
26 changed files with 1034 additions and 519 deletions
+1 -10
View File
@@ -94,15 +94,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
backgroundCompletionHandler = completionHandler
}
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesBegan(touches, with: event)
let statusBarRect = self.window?.windowScene?.statusBarManager?.statusBarFrame
guard let touchPoint = event?.allTouches?.first?.location(in: self.window) else { return }
if statusBarRect?.contains(touchPoint) ?? false {
NotificationCenter.default.post(name: .capacitorStatusBarTapped, object: nil)
}
}
}