disable SQLite in Java & Swift (since they don't compile) & add SQL queueing on startup

At this point, the app compiles and runs in Android & iOS but DB operations fail.
This commit is contained in:
2025-06-03 19:59:28 -06:00
parent 9741b6a3e6
commit 705c6092a3
14 changed files with 283 additions and 123 deletions

View File

@@ -60,10 +60,17 @@ export class ElectronPlatformService implements PlatformService {
await this.runMigrations();
this.initialized = true;
logger.log("SQLite database initialized successfully");
logger.log(
"[ElectronPlatformService] SQLite database initialized successfully",
);
} catch (error) {
logger.error("Error initializing SQLite database:", error);
throw new Error("Failed to initialize database");
logger.error(
"[ElectronPlatformService] Error initializing SQLite database:",
error,
);
throw new Error(
"[ElectronPlatformService] Failed to initialize database",
);
}
}