I have two paired bluetooth devices (my car's head-unit for phone audio and a separate bluetooth receiver for A2DP). On my phone there's a checkbox for "Use for media audio" that I have to manually toggle for my A2DP output to go to my car's speakers. My goal is to toggle this programmatically.
I tried using both the AudioManager class with the deprecated setBluetoothA2dpOn and the setBluetoothScoOn but neither seemed to have any effect. I was able to get a list of the bluetooth paired devices and get a handle to the connection I want to toggle but I couldn't seem to get it quite right. I also tried getting the default bluetooth adapter and then using getProfileProxy but I feel like I'm barking up the wrong tree there.
Can anyone point me in the right direction? Basically all I want to do is the equivalent of checking that "Use for media audio" box.
First you need to set the program to activate the Bluetooth on the phone and select the device that it should pair with via
(im not sure about the pairing but this must be done via some config activity)
Then you should set A2DP to connect to the car's stereo
follow this link to try and find the code for it, if i have time i will try and find it for you but its a start =]
hidden & internal api's