upgraded code versions
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
// Flutter web plugin registrant file.
|
||||
//
|
||||
// Generated file. Do not edit.
|
||||
//
|
||||
|
||||
// @dart = 2.13
|
||||
// ignore_for_file: type=lint
|
||||
|
||||
import 'package:camera_web/camera_web.dart';
|
||||
import 'package:connectivity_plus/src/connectivity_plus_web.dart';
|
||||
import 'package:file_picker_web/file_picker_web.dart';
|
||||
import 'package:flutter_local_notifications_web/flutter_local_notifications_web.dart';
|
||||
import 'package:flutter_native_splash/flutter_native_splash_web.dart';
|
||||
import 'package:flutter_secure_storage_web/flutter_secure_storage_web.dart';
|
||||
import 'package:flutter_sound_web/flutter_sound_web.dart';
|
||||
import 'package:fluttertoast/fluttertoast_web.dart';
|
||||
import 'package:geolocator_web/geolocator_web.dart';
|
||||
import 'package:google_maps_flutter_web/google_maps_flutter_web.dart';
|
||||
import 'package:image_picker_for_web/image_picker_for_web.dart';
|
||||
import 'package:mobile_scanner/src/web/mobile_scanner_web.dart';
|
||||
import 'package:package_info_plus/src/package_info_plus_web.dart';
|
||||
import 'package:permission_handler_html/permission_handler_html.dart';
|
||||
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
||||
import 'package:speech_to_text/speech_to_text_web.dart';
|
||||
import 'package:url_launcher_web/url_launcher_web.dart';
|
||||
import 'package:video_player_web/video_player_web.dart';
|
||||
import 'package:workmanager_web/workmanager_web.dart';
|
||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
||||
|
||||
void registerPlugins([final Registrar? pluginRegistrar]) {
|
||||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
||||
CameraPlugin.registerWith(registrar);
|
||||
ConnectivityPlusWebPlugin.registerWith(registrar);
|
||||
FilePickerWeb.registerWith(registrar);
|
||||
WebFlutterLocalNotificationsPlugin.registerWith(registrar);
|
||||
FlutterNativeSplashWeb.registerWith(registrar);
|
||||
FlutterSecureStorageWeb.registerWith(registrar);
|
||||
FlutterSoundPlugin.registerWith(registrar);
|
||||
FluttertoastWebPlugin.registerWith(registrar);
|
||||
GeolocatorPlugin.registerWith(registrar);
|
||||
GoogleMapsPlugin.registerWith(registrar);
|
||||
ImagePickerPlugin.registerWith(registrar);
|
||||
MobileScannerWeb.registerWith(registrar);
|
||||
PackageInfoPlusWebPlugin.registerWith(registrar);
|
||||
WebPermissionHandler.registerWith(registrar);
|
||||
SharedPreferencesPlugin.registerWith(registrar);
|
||||
SpeechToTextPlugin.registerWith(registrar);
|
||||
UrlLauncherPlugin.registerWith(registrar);
|
||||
VideoPlayerPlugin.registerWith(registrar);
|
||||
WorkmanagerWeb.registerWith(registrar);
|
||||
registrar.registerMessageHandler();
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
3.41.1
|
||||
File diff suppressed because one or more lines are too long
@@ -8,7 +8,7 @@
|
||||
|
||||
#include <file_selector_linux/file_selector_plugin.h>
|
||||
#include <flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h>
|
||||
#include <smart_auth/smart_auth_plugin.h>
|
||||
#include <flutter_sound/flutter_sound_plugin.h>
|
||||
#include <url_launcher_linux/url_launcher_plugin.h>
|
||||
|
||||
void fl_register_plugins(FlPluginRegistry* registry) {
|
||||
@@ -18,9 +18,9 @@ void fl_register_plugins(FlPluginRegistry* registry) {
|
||||
g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar =
|
||||
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin");
|
||||
flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar);
|
||||
g_autoptr(FlPluginRegistrar) smart_auth_registrar =
|
||||
fl_plugin_registry_get_registrar_for_plugin(registry, "SmartAuthPlugin");
|
||||
smart_auth_plugin_register_with_registrar(smart_auth_registrar);
|
||||
g_autoptr(FlPluginRegistrar) flutter_sound_registrar =
|
||||
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSoundPlugin");
|
||||
flutter_sound_plugin_register_with_registrar(flutter_sound_registrar);
|
||||
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
|
||||
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
|
||||
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
|
||||
|
||||
@@ -5,11 +5,12 @@
|
||||
list(APPEND FLUTTER_PLUGIN_LIST
|
||||
file_selector_linux
|
||||
flutter_secure_storage_linux
|
||||
smart_auth
|
||||
flutter_sound
|
||||
url_launcher_linux
|
||||
)
|
||||
|
||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
||||
jni
|
||||
)
|
||||
|
||||
set(PLUGIN_BUNDLED_LIBRARIES)
|
||||
|
||||
@@ -5,30 +5,38 @@
|
||||
import FlutterMacOS
|
||||
import Foundation
|
||||
|
||||
import connectivity_macos
|
||||
import connectivity_plus
|
||||
import file_picker_darwin
|
||||
import file_selector_macos
|
||||
import flutter_local_notifications
|
||||
import flutter_secure_storage_macos
|
||||
import flutter_secure_storage_darwin
|
||||
import flutter_sound
|
||||
import geocoding_darwin
|
||||
import geolocator_apple
|
||||
import path_provider_foundation
|
||||
import mobile_scanner
|
||||
import package_info_plus
|
||||
import shared_preferences_foundation
|
||||
import smart_auth
|
||||
import speech_to_text_macos
|
||||
import sqflite
|
||||
import speech_to_text
|
||||
import sqflite_darwin
|
||||
import url_launcher_macos
|
||||
import video_player_avfoundation
|
||||
import workmanager_apple
|
||||
|
||||
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
||||
ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin"))
|
||||
ConnectivityPlusPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlusPlugin"))
|
||||
FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin"))
|
||||
FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin"))
|
||||
FlutterLocalNotificationsPlugin.register(with: registry.registrar(forPlugin: "FlutterLocalNotificationsPlugin"))
|
||||
FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin"))
|
||||
FlutterSecureStorageDarwinPlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStorageDarwinPlugin"))
|
||||
FlutterSoundPlugin.register(with: registry.registrar(forPlugin: "FlutterSoundPlugin"))
|
||||
GeocodingDarwinPlugin.register(with: registry.registrar(forPlugin: "GeocodingDarwinPlugin"))
|
||||
GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin"))
|
||||
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
|
||||
MobileScannerPlugin.register(with: registry.registrar(forPlugin: "MobileScannerPlugin"))
|
||||
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
|
||||
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
|
||||
SmartAuthPlugin.register(with: registry.registrar(forPlugin: "SmartAuthPlugin"))
|
||||
SpeechToTextMacosPlugin.register(with: registry.registrar(forPlugin: "SpeechToTextMacosPlugin"))
|
||||
SpeechToTextPlugin.register(with: registry.registrar(forPlugin: "SpeechToTextPlugin"))
|
||||
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
|
||||
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
|
||||
FVPVideoPlayerPlugin.register(with: registry.registrar(forPlugin: "FVPVideoPlayerPlugin"))
|
||||
VideoPlayerPlugin.register(with: registry.registrar(forPlugin: "VideoPlayerPlugin"))
|
||||
WorkmanagerPlugin.register(with: registry.registrar(forPlugin: "WorkmanagerPlugin"))
|
||||
}
|
||||
|
||||
+767
-631
File diff suppressed because it is too large
Load Diff
+23
-23
@@ -38,56 +38,56 @@ dependencies:
|
||||
path_provider: ^2.1.5
|
||||
http: ^1.3.0
|
||||
flutter_native_splash: ^2.4.0
|
||||
google_fonts: ^6.2.1
|
||||
google_fonts: ^8.2.1
|
||||
provider: ^6.1.2
|
||||
markdown_widget: ^2.2.0
|
||||
fade_shimmer: ^2.2.0
|
||||
fluentui_system_icons: ^1.1.273
|
||||
grouped_list: ^5.1.2
|
||||
grouped_list: ^6.0.0
|
||||
concentric_transition: ^1.0.3
|
||||
lottie: ^3.1.0
|
||||
dotted_line: ^3.2.2
|
||||
google_nav_bar: ^5.0.6
|
||||
socket_io_client: ^2.0.2
|
||||
socket_io_client: ^3.1.6
|
||||
scrollable_positioned_list: ^0.3.8
|
||||
flutter_secure_storage: ^9.2.4
|
||||
flutter_secure_storage: ^11.1.1
|
||||
dio: ^5.8.0
|
||||
fl_chart: ^0.70.0
|
||||
fl_chart: ^1.2.0
|
||||
flutter_datetime_picker_plus: ^2.2.0
|
||||
camera: ^0.11.0
|
||||
camera: ^0.12.0+2
|
||||
image_picker: ^1.1.0
|
||||
# audioplayers: any
|
||||
file_picker: ^8.0.0
|
||||
file_picker: ^13.1.0
|
||||
flutter_sound: ^9.24.0
|
||||
flutter_map: ^6.1.0
|
||||
latlong2: ^0.9.1
|
||||
flutter_map: ^8.3.2
|
||||
latlong2: ^0.10.1
|
||||
google_maps_flutter: ^2.9.0
|
||||
geocoding: ^3.0.0
|
||||
geolocator: ^13.0.1
|
||||
geocoding: ^5.0.0
|
||||
geolocator: ^14.0.3
|
||||
shared_preferences: ^2.5.0
|
||||
flutter_local_notifications: ^17.2.3
|
||||
workmanager: ^0.5.2
|
||||
permission_handler: ^11.3.0
|
||||
mobile_scanner: ^5.2.0
|
||||
flutter_local_notifications: ^22.3.1
|
||||
workmanager: ^0.10.10
|
||||
permission_handler: ^13.0.2
|
||||
mobile_scanner: ^7.4.2
|
||||
barcode_widget: ^2.0.4
|
||||
qr_flutter: ^4.1.0
|
||||
video_player: ^2.9.0
|
||||
dropdown_search: ^6.0.0
|
||||
fluttertoast: ^8.2.6
|
||||
dropdown_search: ^7.0.0
|
||||
fluttertoast: ^9.1.0
|
||||
speech_to_text: ^7.0.0
|
||||
flutter_svg: ^2.0.10
|
||||
cached_network_image: ^3.4.1
|
||||
google_mlkit_text_recognition: ^0.13.0
|
||||
google_mlkit_text_recognition: ^0.16.0
|
||||
sqflite: ^2.4.0
|
||||
path: ^1.9.0
|
||||
sqflite_common_ffi: ^2.3.4
|
||||
flutter_switch: ^0.3.2
|
||||
pdf: ^3.11.0
|
||||
flutter_svg_provider: ^1.0.7
|
||||
pinput: ^5.0.0
|
||||
pinput: ^6.0.2
|
||||
intl: ^0.20.2
|
||||
sqlite3: ^2.4.0
|
||||
connectivity_plus: ^6.1.0
|
||||
sqlite3: ^3.5.2
|
||||
connectivity_plus: ^7.3.1
|
||||
|
||||
|
||||
|
||||
@@ -97,14 +97,14 @@ dependencies:
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
flutter_launcher_icons: "^0.13.1"
|
||||
flutter_launcher_icons: ^0.14.4
|
||||
|
||||
# The "flutter_lints" package below contains a set of recommended lints to
|
||||
# encourage good coding practices. The lint set provided by the package is
|
||||
# activated in the `analysis_options.yaml` file located at the root of your
|
||||
# package. See that file for information about deactivating specific lint
|
||||
# rules and activating additional ones.
|
||||
flutter_lints: ^5.0.0
|
||||
flutter_lints: ^6.0.0
|
||||
|
||||
# Override transitive win32/archive to versions compatible with Docker Flutter image Dart (UnmodifiableUint8ListView fix) - by Azmat
|
||||
dependency_overrides:
|
||||
|
||||
@@ -6,24 +6,30 @@
|
||||
|
||||
#include "generated_plugin_registrant.h"
|
||||
|
||||
#include <connectivity_plus/connectivity_plus_windows_plugin.h>
|
||||
#include <file_selector_windows/file_selector_windows.h>
|
||||
#include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h>
|
||||
#include <flutter_sound/flutter_sound_plugin_c_api.h>
|
||||
#include <geolocator_windows/geolocator_windows.h>
|
||||
#include <permission_handler_windows/permission_handler_windows_plugin.h>
|
||||
#include <smart_auth/smart_auth_plugin.h>
|
||||
#include <speech_to_text_windows/speech_to_text_windows.h>
|
||||
#include <url_launcher_windows/url_launcher_windows.h>
|
||||
|
||||
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
||||
ConnectivityPlusWindowsPluginRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("ConnectivityPlusWindowsPlugin"));
|
||||
FileSelectorWindowsRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("FileSelectorWindows"));
|
||||
FlutterSecureStorageWindowsPluginRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin"));
|
||||
FlutterSoundPluginCApiRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("FlutterSoundPluginCApi"));
|
||||
GeolocatorWindowsRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("GeolocatorWindows"));
|
||||
PermissionHandlerWindowsPluginRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
|
||||
SmartAuthPluginRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("SmartAuthPlugin"));
|
||||
SpeechToTextWindowsRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("SpeechToTextWindows"));
|
||||
UrlLauncherWindowsRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
||||
}
|
||||
|
||||
@@ -3,15 +3,19 @@
|
||||
#
|
||||
|
||||
list(APPEND FLUTTER_PLUGIN_LIST
|
||||
connectivity_plus
|
||||
file_selector_windows
|
||||
flutter_secure_storage_windows
|
||||
flutter_sound
|
||||
geolocator_windows
|
||||
permission_handler_windows
|
||||
smart_auth
|
||||
speech_to_text_windows
|
||||
url_launcher_windows
|
||||
)
|
||||
|
||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
||||
flutter_local_notifications_windows
|
||||
jni
|
||||
)
|
||||
|
||||
set(PLUGIN_BUNDLED_LIBRARIES)
|
||||
|
||||
Reference in New Issue
Block a user