I am having trouble connecting two Android devices via Bluetooth, which happens only when they have been paired before. I am running one as the server and the other as the client.
Here is the sequence of things on the server side:
On the client side:
The above process works perfectly fine for me when the client and the server have never been paired before. However, after Android registered them in the device list, they will inevitably timeout at the connect()/accept() stage.
I have been searching for a solution for a couple days now and have tried quite a few things including this one: Connecting to a already paired Bluetooth device
The reflection method does not work for me either. It seems that connect() would return immediately but when I tried to getOutputStream() I get an exception. On the accept() side it does not even register that someone tried to connect. I seriously need some help or pointer on getting the devices to establish a connection once they have been paired before.
Here is some info about the devices:
Thank you ahead of time. I am about 2-week-old in Android and Bluetooth, so if you see any missing steps or best practices, please point them out as well.
In the client when I attempt to make a connection to a bonded device, I simply called it on the BluetoothDevice I found in BluetoothAdapter.getBondedDevices()
. This does NOT work.
In order to properly establish the Bluetooth connection, I had to do something similar to the pseudocode below:
BluetoothDevice bonded = a device from BluetoothAdapter.getBondedDevices();
BluetoothDevice actual = BluetoothAdapter.getRemoteDevice(bonded.getAddress());
BluetoothSocket socket = actual.createRfcommSocketToServiceRecord(SOME_UUID);
socket.connect();
I arrived this answer by following exactly the Bluetooth chat example: Bluetooth Chat Service. Why it doesn't work on the device from getBondedDevices()
is beyond me. Maybe someone with more intimate knowledge of Android can answer that.