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:
- Check various Bluetooth statuses (adapter available, is enabled, etc).
- call listenUsingRfcommWithServiceRecord() with a pre-defined UUID that I chose.
- request to make device discoverable
- since being discoverable happens asynchronously, I call accept() and wait for an incoming connection.
On the client side:
- Check various Bluetooth statuses (adapter available, is enabled, etc).
- for each device in getBondedDevices(), I compare getName() with the server's name. If there is a match, skip to step 6.
- Start BT discovery
- For each discovered device (note that paired devices from 2a do not show up here), compare the device name with the server's name. If there is a match, go to step 6.
- Cancel discovery
- On the device that was found from step 2, call createRfcommSocketToServiceRecord() with the same pre-defined UUID that was used on the server side.
- Call connect() and wait for it to return a connected socket.
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:
- I am testing the server and client on two LG G2X phones.
- Both of them run on Android 2.3.3, which corresponds to API level 10.
- Again, the above works after I unpair the devices manually in the settings.
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.