fix: add requirements for capacitor/sqlite

This commit is contained in:
Matthew Raymer
2025-05-27 12:42:27 +00:00
parent b04a66179a
commit 7b4f9d6556
11 changed files with 351 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
import UIKit
import Capacitor
import CapacitorSQLite
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
@@ -7,6 +8,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Initialize SQLite
let sqlite = SQLite()
sqlite.initialize()
// Override point for customization after application launch.
return true
}