adding in basic code to joiin room

This commit is contained in:
talksik
2023-06-30 16:59:34 -07:00
parent 768fb53138
commit 67b82e2261
10 changed files with 423 additions and 10 deletions
@@ -5,6 +5,18 @@
import FlutterMacOS
import Foundation
import connectivity_plus
import device_info_plus
import flutter_webrtc
import flutter_window_close
import livekit_client
import path_provider_foundation
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
ConnectivityPlugin.register(with: registry.registrar(forPlugin: "ConnectivityPlugin"))
DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin"))
FlutterWebRTCPlugin.register(with: registry.registrar(forPlugin: "FlutterWebRTCPlugin"))
FlutterWindowClosePlugin.register(with: registry.registrar(forPlugin: "FlutterWindowClosePlugin"))
LiveKitPlugin.register(with: registry.registrar(forPlugin: "LiveKitPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
}