I have the OnQBVideoChatListener from QuickBlox SDK for Android set as follow:
OnQBVideoChatListener qbVideoChatListener = new OnQBVideoChatListener() {
...
@Override
public void onOpponentAudioDataReceive(byte[] audioData) {
QBVideoChatController.getInstance().playAudio(audioData);
}
...
}
The playAudio method is currently playing what the opponent says through the speaker. How do I make it to play through earpiece?