[Solved] Detach microphone from sinch video call [closed]

The microphone can only be used by one process at a time. You can check if the Sinch video call is occupying the microphone using the snipped below public static boolean checkIfMicrophoneIsBusy(Context ctx){ AudioRecord audio = null; boolean ready = true; try{ int baseSampleRate = 44100; int channel = AudioFormat.CHANNEL_IN_MONO; int format = AudioFormat.ENCODING_PCM_16BIT; int … Read more