This message was deleted.
# announcements
s
This message was deleted.
m
cc @eager-raincoat-52616
šŸ‘€ 1
e
which iOS version is this?
have you configured your AudioSession with
AudioSession.configureAudio
? by default, the preferred output is still speaker, so if you want the default to output to the earpiece, you'll need to set that.
force_speaker
is only for overriding all audio routes (regardless of whether headphones/bluetooth is connected). You may also want to check out
AudioSession.showAudioRoutePicker
f
i used AudioSession.configureAudio by default Iphone 6 version 12.5.7
expect behavior is • I can switch between speaker and earpiece
e
again, you'll either need to set your default output to earpiece with
configureAudio
or use
showAudioRoutePicker
. iOS is very particular about its audio controls, and we can't directly force output to the earpiece.
āœ… 1
f
thx