Updated libraries

This commit is contained in:
Juan Gilsanz Polo 2024-09-08 17:16:07 +02:00
parent 0eae951eed
commit be3e76eafc
6 changed files with 142 additions and 115 deletions

View file

@ -13,6 +13,7 @@ import sentry_flutter
import shared_preferences_foundation
import sqflite
import sqlite3_flutter_libs
import store_checker
import url_launcher_macos
import window_manager
@ -25,6 +26,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
Sqlite3FlutterLibsPlugin.register(with: registry.registrar(forPlugin: "Sqlite3FlutterLibsPlugin"))
StoreCheckerPlugin.register(with: registry.registrar(forPlugin: "StoreCheckerPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
WindowManagerPlugin.register(with: registry.registrar(forPlugin: "WindowManagerPlugin"))
}