Types

Link copied to clipboard
data class BluetoothHeadset(val name: String = "Bluetooth", val audio: AudioDevice) : StreamAudioDevice

An StreamAudioDevice representing a Bluetooth Headset.

Link copied to clipboard
object Companion
Link copied to clipboard
data class Earpiece(val name: String = "Earpiece", val audio: AudioDevice) : StreamAudioDevice

An StreamAudioDevice representing the Earpiece.

Link copied to clipboard
data class Speakerphone(val name: String = "Speakerphone", val audio: AudioDevice) : StreamAudioDevice

An StreamAudioDevice representing the Speakerphone.

Link copied to clipboard
data class WiredHeadset(val name: String = "Wired Headset", val audio: AudioDevice) : StreamAudioDevice

An StreamAudioDevice representing a Wired Headset.

Properties

Link copied to clipboard
abstract val audio: AudioDevice
Link copied to clipboard
abstract val name: String

The friendly name of the device.

Inherited functions

Link copied to clipboard