I have an app reading out incoming SMS and (if set) routing the TTS output to a mono bluetooth headset.
This is done by
public static void startBluetooth(Context context) {
AudioManager audioManager = (AudioManager) context
.getSystemService(Context.AUDIO_SERVICE);
//audioManager.setMode(AudioManager.MODE_IN_CALL);
audioManager.startBluetoothSco();
}
Now I received an email telling me that
After using the app, the audio output on the headphone jack no longer works and most of the times if you receive a call, you will not hear the caller on the phone ( not using a BT or wired headset).
I commented out the line above, because it is not in the user's version. How is that possible? Could it be, that the stopBluetoothSco is not called? Or could that have another reason?
Thanks and kind regards, Marc
/edit: I could reproduce this. It will hapen if no music is playing after stoping it.