AxpAudioInterface provides functionality for managing the audio device that is used by the user. It allows to access to either the audio input interface (microphone) or the audio output interface (headphones).

interface AxpAudioInterface {
    getInputInterface(): AxpAudioInputInterface;
    getOutputInterface(): AxpAudioOutputInterface;
}

Methods