Package com.unblu.livekitmodule
Class LiveKitModuleProvider
java.lang.Object
com.unblu.livekitmodule.LiveKitModuleProvider
Entry point to use the call functionality of Unblu to make audio and video calls with LiveKit.
 The class is used to create a 
CallModule instance for Vonage and register it on the client configuration.
 The returned API must be registered using UnbluClientConfiguration.Builder.registerModule(com.unblu.sdk.core.UnbluModule) to enable its functionality.
 If you're using Vonage as your call service provider, use CallModuleProvider instead.- 
Method SummaryModifier and TypeMethodDescriptionstatic CallModulecreate()Creates and returns a new instance ofCallModuleto make audio and video calls with LiveKit.static UnbluProviderCreates and returns a new instance ofUnbluProviderto make audio and video calls with LiveKit.static voidsetLiveKitLogLevel(io.livekit.android.util.LoggingLevel logLevel) Sets the LiveKit log level
- 
Method Details- 
createCreates and returns a new instance ofCallModuleto make audio and video calls with LiveKit.- Returns:
- A CallModuleinstance to use with LiveKit
 
- 
createForDynamicCreates and returns a new instance ofUnbluProviderto make audio and video calls with LiveKit.This method is primarily intended for testing purposes. It allows you to switch between call service providers, provided you have multiple call service providers configured on the Collaboration Server. In most cases, you should use create().- Returns:
- An UnbluProviderinstance to use with LiveKit
 
- 
setLiveKitLogLevelpublic static void setLiveKitLogLevel(io.livekit.android.util.LoggingLevel logLevel) Sets the LiveKit log level- Parameters:
- logLevel- The log level to set for LiveKit. The available enum values are VERBOSE, INFO, DEBUG, WARN, ERROR, WTF, and OFF.
 
 
-