Call Options
data class CallOptions @JvmOverloads constructor( var callRecordingType: CallRecordingType = CallRecordingType.NONE, var backCameraAsDefault: Boolean = false, var disableProximitySensor: Boolean = false, val autoAnswer: Boolean = false, var feedbackEnabled: Boolean = false) : CallOptionSet
Content copied to clipboard
Call options
Constructors
Link copied to clipboard
fun CallOptions( callRecordingType: CallRecordingType = CallRecordingType.NONE, backCameraAsDefault: Boolean = false, disableProximitySensor: Boolean = false, autoAnswer: Boolean = false, feedbackEnabled: Boolean = false)
Content copied to clipboard
Create empty Call options
Functions
Link copied to clipboard
Link copied to clipboard
This functions adds the option to use back camera as default.
Link copied to clipboard
This functions enables the displaying of the call feedback UI on call ended.
Link copied to clipboard
This functions disables the usage of proximity sensor during calls. It can be useful for custom devices such as smart-glasses.
Link copied to clipboard
fun withRecordingEnabled(callRecordingType: CallRecordingType? = CallRecordingType.AUTOMATIC): CallOptions
Content copied to clipboard
This function enable recording for the upcoming call.
Link copied to clipboard