Making successful Bluetooth connections in Android
I am mystified by two approaches to making BT connections in Android. This is what I have done for as long as I can remember, and it has worked from 2.3+ devices to early 4.x. This what the Android docs describe as well. private static final UUID sppUUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); bluetoothSocket = bluetoothDevice.createRfcommSocketToServiceRecord(sppUUID); bluetoothSocket.connect(); This has ceased to work on some newer Androids (Nexus 7 running 4.4), Cyanogenmod with this result (or similar): java.io.IOException: read failed, socket might closed or timeout,