Removed store checker and added install referrer

This commit is contained in:
Juan Gilsanz Polo 2024-09-08 19:27:34 +02:00
parent 8761652eaa
commit ffcc0c2da0
9 changed files with 23 additions and 36 deletions

View file

@ -13,7 +13,6 @@ import sentry_flutter
import shared_preferences_foundation
import sqflite
import sqlite3_flutter_libs
import store_checker
import url_launcher_macos
import window_manager
@ -26,7 +25,6 @@ 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"))
}