Streaming To Built In Speakers And Bluetooth Speakers Simultaneously
On Android, is it possible to stream audio to both a bluetooth paired speaker and the built in speaker at the same time? Looking at AudioManager, it seems not to be the case. I th
Solution 1:
You can used AudioManager.STREAM_RING
. This property sets to MediaPlayer
:
mediaPlayer.setAudioStreamType(AudioManager.STREAM_RING);
is ready.
BUT! you really will have a problem with synchronization of Bluetooth device. Now i'm trying to solve it.
Post a Comment for "Streaming To Built In Speakers And Bluetooth Speakers Simultaneously"