Revert "build(mobile): deactivate sqlite debugging lib used for desktop"

keep development branch in a state to run on desktop

This reverts commit 5ead82b9c6.
This commit is contained in:
fbachus
2026-07-31 04:11:57 +02:00
parent 48e359a315
commit 0a3efa61be
+2 -2
View File
@@ -4,12 +4,12 @@ import 'api_handler.dart';
import 'transport_helper.dart'; import 'transport_helper.dart';
import 'dart:async'; import 'dart:async';
// import 'package:sqflite_common_ffi/sqflite_ffi.dart'; //for testing on desktop import 'package:sqflite_common_ffi/sqflite_ffi.dart'; //for testing on desktop
void main() async { void main() async {
await dotenv.load(); await dotenv.load();
const String dbName = "oeffimasterTransportDb"; const String dbName = "oeffimasterTransportDb";
// databaseFactory = databaseFactoryFfi; // for debugging and desktop test databaseFactory = databaseFactoryFfi; // for debugging and desktop test
DbHelper.initDb(dbName); DbHelper.initDb(dbName);
runApp(const MyApp()); runApp(const MyApp());
} }