I'm testing this out with a bluetooth headset. All I have in my code is InCallManager.start();. With my Android device I can see that the mic is being picked up from the bluetooth device automatically. But in my iOS device the internal mic is active and not the one from the bluetooth device. I have the right permissions and have the following in my Info.plist.
<key>UIBackgroundModes</key>
<array>
<string>bluetooth-central</string>
<string>bluetooth-peripheral</string>
</array>
There's no chooseAudioRoute either. When I add it, it just throws an error [TypeError: undefined is not a function]
My device is iPhone 11 with iOS 16.6
I'm testing this out with a bluetooth headset. All I have in my code is
InCallManager.start();. With my Android device I can see that the mic is being picked up from the bluetooth device automatically. But in my iOS device the internal mic is active and not the one from the bluetooth device. I have the right permissions and have the following in myInfo.plist.There's no
chooseAudioRouteeither. When I add it, it just throws an error[TypeError: undefined is not a function]My device is iPhone 11 with iOS 16.6