chore: update generated plugin registrants and lockfile

Auto-generated files updated after adding share_plus dependency
and running flutter pub get.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+2
macos/Flutter/GeneratedPluginRegistrant.swift
··· 9 9 import flutter_secure_storage_macos 10 10 import flutter_web_auth_2 11 11 import path_provider_foundation 12 + import share_plus 12 13 import shared_preferences_foundation 13 14 import sqflite_darwin 14 15 import url_launcher_macos ··· 20 21 FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) 21 22 FlutterWebAuth2Plugin.register(with: registry.registrar(forPlugin: "FlutterWebAuth2Plugin")) 22 23 PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 24 + SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) 23 25 SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) 24 26 SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) 25 27 UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
+24
pubspec.lock
··· 184 184 url: "https://pub.dev" 185 185 source: hosted 186 186 version: "3.1.2" 187 + cross_file: 188 + dependency: transitive 189 + description: 190 + name: cross_file 191 + sha256: "942a4791cd385a68ccb3b32c71c427aba508a1bb949b86dff2adbe4049f16239" 192 + url: "https://pub.dev" 193 + source: hosted 194 + version: "0.3.5" 187 195 crypto: 188 196 dependency: transitive 189 197 description: ··· 735 743 url: "https://pub.dev" 736 744 source: hosted 737 745 version: "0.28.0" 746 + share_plus: 747 + dependency: "direct main" 748 + description: 749 + name: share_plus 750 + sha256: fce43200aa03ea87b91ce4c3ac79f0cecd52e2a7a56c7a4185023c271fbfa6da 751 + url: "https://pub.dev" 752 + source: hosted 753 + version: "10.1.4" 754 + share_plus_platform_interface: 755 + dependency: transitive 756 + description: 757 + name: share_plus_platform_interface 758 + sha256: cc012a23fc2d479854e6c80150696c4a5f5bb62cb89af4de1c505cf78d0a5d0b 759 + url: "https://pub.dev" 760 + source: hosted 761 + version: "5.0.2" 738 762 shared_preferences: 739 763 dependency: "direct main" 740 764 description:
+3
windows/flutter/generated_plugin_registrant.cc
··· 8 8 9 9 #include <desktop_webview_window/desktop_webview_window_plugin.h> 10 10 #include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h> 11 + #include <share_plus/share_plus_windows_plugin_c_api.h> 11 12 #include <url_launcher_windows/url_launcher_windows.h> 12 13 #include <window_to_front/window_to_front_plugin.h> 13 14 ··· 16 17 registry->GetRegistrarForPlugin("DesktopWebviewWindowPlugin")); 17 18 FlutterSecureStorageWindowsPluginRegisterWithRegistrar( 18 19 registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin")); 20 + SharePlusWindowsPluginCApiRegisterWithRegistrar( 21 + registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi")); 19 22 UrlLauncherWindowsRegisterWithRegistrar( 20 23 registry->GetRegistrarForPlugin("UrlLauncherWindows")); 21 24 WindowToFrontPluginRegisterWithRegistrar(
+1
windows/flutter/generated_plugins.cmake
··· 5 5 list(APPEND FLUTTER_PLUGIN_LIST 6 6 desktop_webview_window 7 7 flutter_secure_storage_windows 8 + share_plus 8 9 url_launcher_windows 9 10 window_to_front 10 11 )