| .. | .. |
|---|
| 6 | 6 | import Foundation |
|---|
| 7 | 7 | |
|---|
| 8 | 8 | import audioplayers_darwin |
|---|
| 9 | +import bonsoir_darwin |
|---|
| 9 | 10 | import device_info_plus |
|---|
| 10 | 11 | import file_picker |
|---|
| 11 | 12 | import file_selector_macos |
|---|
| 12 | 13 | import flutter_secure_storage_macos |
|---|
| 13 | | -import package_info_plus |
|---|
| 14 | 14 | import record_macos |
|---|
| 15 | 15 | import share_plus |
|---|
| 16 | 16 | import shared_preferences_foundation |
|---|
| 17 | | -import wakelock_plus |
|---|
| 18 | 17 | |
|---|
| 19 | 18 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { |
|---|
| 20 | 19 | AudioplayersDarwinPlugin.register(with: registry.registrar(forPlugin: "AudioplayersDarwinPlugin")) |
|---|
| 20 | + SwiftBonsoirPlugin.register(with: registry.registrar(forPlugin: "SwiftBonsoirPlugin")) |
|---|
| 21 | 21 | DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin")) |
|---|
| 22 | 22 | FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin")) |
|---|
| 23 | 23 | FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin")) |
|---|
| 24 | 24 | FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin")) |
|---|
| 25 | | - FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) |
|---|
| 26 | 25 | RecordMacOsPlugin.register(with: registry.registrar(forPlugin: "RecordMacOsPlugin")) |
|---|
| 27 | 26 | SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) |
|---|
| 28 | 27 | SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) |
|---|
| 29 | | - WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin")) |
|---|
| 30 | 28 | } |
|---|