configure
abstract fun configure(configure: MultimediaConfiguration.() -> Unit = { MultimediaConfiguration() }): MultimediaClient
Applies configuration changes to this client.
Use this to update the display name shown to other participants or customize the foreground service notification displayed during active calls.
Return
This MultimediaClient instance for chaining.
Parameters
configure
A lambda applied to the current MultimediaConfiguration.
Samples
multimediaClient.configure {
displayName = "Customer"
notifications.contentActivity = android.app.Activity::class.java
}Content copied to clipboard