Bluetooth Pairing Google Glass
Using Google Glass, I am able to discover Bluetooth devices and see their address and information. However, I cannot get the Glass to pair (bond) with them. Update Following the instructions on this page now I'm trying to get the bonding, but for some reason the BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action) is never happening. private void pairDevice(BluetoothDevice Ddevice) { Log.d("MY_LOG", "Try to pair " + Ddevice.getName()); try{ Method m = Ddevice.getClass().getMethod("createBond", (Class[]) null); m.invoke(Ddevice, (Object[]) null); Log.d("MY_LOG", "Pairing " + Ddevice.getName