Package-level declarations

Types

Link copied to clipboard
class CallUI(call: Call, val activityClazz: Class<*>, val actions: MutableStateFlow<Set<CallUI.Action>>? = null, val scope: CoroutineScope = CoroutineScope(Dispatchers.IO), floatingMessagePresenter: FloatingMessagePresenter = CallUIFloatingMessagePresenter(isGlassesSDK = KaleyraVideo.isGlassesSdk, logger = KaleyraVideo.logger), callUIButtonsProvider: CallUIButtonsProvider = DefaultCallUIButtonsProvider(call.type, call.state, actions, scope)) : Call, FloatingMessagePresenter, CallUIButtonsProvider
Link copied to clipboard
Link copied to clipboard
class ChatUI(chat: Chat, val actions: MutableStateFlow<Set<ChatUI.Action>> = MutableStateFlow(Action.default), chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null, val scope: CoroutineScope = CoroutineScope(Dispatchers.IO), chatUIButtonsProvider: ChatUIButtonsProvider = DefaultChatUIButtonsProvider(actions, scope)) : Chat, ChatUIButtonsProvider

The chat UI

Link copied to clipboard

ChatViewModel representation of the chat view model

Link copied to clipboard
abstract class CollaborationViewModel(configure: suspend () -> CollaborationViewModel.Configuration) : ViewModel

CollaborationViewModel representing the conference and conversation wrapper

Link copied to clipboard
class CompanyUI(company: Company, coroutineScope: CoroutineScope = CoroutineScope(Dispatchers.IO)) : Company

UI representation of a Company

Link copied to clipboard
class ConferenceUI(conference: Conference, callActivityClazz: Class<*>, logger: PriorityLogger? = null, isSmartGlass: Boolean = false) : Conference

Conference UI

Link copied to clipboard

ConnectionServiceOptions represents the options available to configure the Android connection service capability on the Kaleyra Video SDK.

Link copied to clipboard
class ConversationUI(conversation: Conversation, chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null) : Conversation

The conversation UI

Link copied to clipboard

The device status observer

Link copied to clipboard
data class DisplayModeEvent(val id: String, val displayMode: CallUI.DisplayMode)

Event representing the display mode set

Link copied to clipboard

Font M3 family representation

Link copied to clipboard

Provider for the display operation of conversation and conference flows

Link copied to clipboard

Kaleyra Video Android SDK facade

Link copied to clipboard

Collaboration broadcast receiver

Link copied to clipboard

KaleyraVideoInitializer

Link copied to clipboard
class MessagesUI(messages: Messages, chatActivityClazz: Class<*>, chatCustomNotificationActivityClazz: Class<*>? = null) : Messages

The messages UI

Link copied to clipboard

Enum class representing which sdk UI component has requested the launching of the launcher activity

Link copied to clipboard
data class PresentationModeEvent(val id: String, val presentationMode: CallUI.PresentationMode)

Event representing the presentation mode set

Link copied to clipboard

PushNotificationHandlingStrategy represents the option to automatically or manually manage the KaleyraVideo SDK push notification processing. When using PushNotificationHandlingStrategy.Automatic option the KaleyraVideoSDK push payloads will be automatically intercepted by the KaleyraVideoSDK. Whenever a KaleyraVideoSDK push payload is received, by implementing KaleyraVideoService the SDK will invoke onRequestKaleyraVideoConfigure and onRequestKaleyraVideoConnect functions in order to let integrating app configure and connect the SDK at the right time. When using PushNotificationHandlingStrategy.Manual option the KaleyraVideoSDK push payloads will NOT be automatically intercepted by the KaleyraVideoSDK, so it will be necessary in the integrating app to implement FCM/HMS(Huawei) push notification receivers in order to intercept the KaleyraVideoSDK push payloads and manually configure and connect the SDK to process the notifications.

Link copied to clipboard
class StreamsAudioManager(coroutineScope: CoroutineScope = CoroutineScope(Dispatchers.IO))
Link copied to clipboard
object TestUtils
Link copied to clipboard

VoicePrompts represents the option to enable or disable the reproduction of a vocal message indicating some salient events occurring in the sdk usage. Voice prompt messages includes the message alert when a call recording starts or ends and the alert message indicating that the call recording will start as soon as the call will be connected as well as the message indicating that you are the solely user in the call awaiting for other participants. Voice prompts are played only when the call is an audio call or the screen is off, so the user cannot see the message on the UI. This option is useful fot those use cases in which an operator will declare the starting and stopping of the call recording anyway.

Functions

Request a new Configuration via KaleyraVideoService implementation

Link copied to clipboard

Request a new Configuration via KaleyraVideoService implementation

Link copied to clipboard
suspend fun requestConnect(userId: String? = null): Boolean

Request a new connection via KaleyraVideoService implementation