build: update deps

This commit is contained in:
Rongjian Zhang
2022-10-17 00:13:46 +08:00
parent 7d70886d52
commit 4595f61961
10 changed files with 105 additions and 101 deletions

View File

@@ -8,6 +8,7 @@
#include <maps_launcher/maps_launcher_plugin.h>
#include <sentry_flutter/sentry_flutter_plugin.h>
#include <share_plus_windows/share_plus_windows_plugin_c_api.h>
#include <url_launcher_windows/url_launcher_windows.h>
void RegisterPlugins(flutter::PluginRegistry* registry) {
@@ -15,6 +16,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) {
registry->GetRegistrarForPlugin("MapsLauncherPlugin"));
SentryFlutterPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("SentryFlutterPlugin"));
SharePlusWindowsPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi"));
UrlLauncherWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
}

View File

@@ -5,6 +5,7 @@
list(APPEND FLUTTER_PLUGIN_LIST
maps_launcher
sentry_flutter
share_plus_windows
url_launcher_windows
)